random/makebk

9 lines
109 B
Text
Raw Normal View History

2021-12-28 02:54:26 -06:00
#!/bin/sh
2021-04-19 13:54:49 -05:00
2022-01-02 22:35:07 -06:00
# This simply makes a backup of a file as filename.bak
2021-04-19 13:54:49 -05:00
if [[ -n "$1" ]];
then
cp "$1"{,.bak}
fi