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