Skip to content

Instantly share code, notes, and snippets.

@jskripsky
Created October 19, 2011 14:18
Show Gist options
  • Save jskripsky/1298418 to your computer and use it in GitHub Desktop.
Save jskripsky/1298418 to your computer and use it in GitHub Desktop.
Transfer multiple files to amazon for conversion and delivery on kindle
for file in *.doc; do echo $file; echo "" | mail -s "" -a "$file" -r [sender-addr] [name]@kindle.com; sleep 5; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment