1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2024-12-27 05:28:37 -06:00
random/makebk

10 lines
112 B
Text
Raw Normal View History

2021-04-19 13:54:49 -05:00
# This simply makes a backup of a file as filename.bak
#!/bin/bash
if [[ -n "$1" ]];
then
cp "$1"{,.bak}
fi