Created
January 8, 2014 14:29
Revisions
-
tualatrix created this gist
Jan 8, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ #!/bin/bash while read album do echo -e "Will download album $album" google picasa get "$album" . pushd "$album" echo -e "Start to upload $album to Flickr" find -type f|sort|xargs -I{} flickr_upload {} popd done < album_list.txt echo 'Upload is done' | sendmail your@mail.address