1
0
mirror of https://github.com/ViViDboarder/shoestrap.git synced 2025-03-09 17:06:16 +00:00

11 lines
160 B
Plaintext
Raw Normal View History

#! /bin/bash
for f in "$@"; do
ext="${f##*.}"
if [[ "$ext" == "bak" ]]; then
cp "$f" "${f%.*}"
else
cp "$f" "${f}.bak"
fi
done