mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-26 21:18:36 -06:00
10 lines
112 B
Text
10 lines
112 B
Text
|
# This simply makes a backup of a file as filename.bak
|
||
|
|
||
|
#!/bin/bash
|
||
|
|
||
|
if [[ -n "$1" ]];
|
||
|
then
|
||
|
cp "$1"{,.bak}
|
||
|
fi
|
||
|
|