mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 12:46:31 +00:00
11 lines
121 B
Bash
Executable File
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
|