1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2025-05-01 22:26:52 -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