-
-
Save pinebright/62c922999ccf727c1116b9e4fab2d0e3 to your computer and use it in GitHub Desktop.
バックアップコマンド
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ "$1" = "-h" ]; then | |
echo "Usage: bak FILENAME" | |
else | |
mv $1 $(date "+%Y%m%d%H%M%S")_$1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment