mirror of
https://github.com/SinTan1729/random.git
synced 2025-03-15 09:26:48 -05:00
8 lines
109 B
Bash
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
|