Created
June 23, 2012 04:40
-
-
Save hannahherbig/2976877 to your computer and use it in GitHub Desktop.
This file contains 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
shot() { | |
for file in "/Users/andrew/Desktop/Screen Shot"* | |
do | |
hash=`shasum $file | awk '{ print $1 }'` | |
new="$hash.png" | |
mv $file "/Users/andrew/Dropbox/Public/files/$hash.png" | |
echo "$file => http://dl.dropbox.com/u/5489165/files/$hash.png" | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment