Created
July 5, 2011 13:50
-
-
Save myles/1064873 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/bash | |
# This will copy a file, appending the date and time | |
# to the end of the file name. | |
# | |
# http://c.myl.be/8BYj | |
date_formatted=$(date +%Y-%m-%d_%H.%M%S) | |
file_extension=`echo "$1"|awk -F . '{print $NF}'` | |
file_name=`basename $1 .$file_extension` | |
cp -iv $1 $file_name-$date_formatted.$file_extension |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment