mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-25 20:58:37 -06:00
9 lines
110 B
Bash
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
|
|
|