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

11 lines
121 B
Plaintext
Raw Normal View History

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