random/makebk
2021-04-20 00:24:49 +05:30

9 lines
112 B
Text
Executable file

# This simply makes a backup of a file as filename.bak
#!/bin/bash
if [[ -n "$1" ]];
then
cp "$1"{,.bak}
fi