1
0
mirror of https://github.com/ViViDboarder/shoestrap.git synced 2025-03-10 01:26:18 +00:00

11 lines
121 B
Bash
Executable File

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