1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2025-04-11 13:46:04 -05:00
random/makebk

9 lines
110 B
Bash

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