random/makebk
2022-01-15 02:11:25 -06:00

8 lines
109 B
Bash

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