document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. # Original post at http://n8henrie.com/2012/12/droplet-to-remove-gps-data-from-photos-with-exiftool/
  2. for f in "$@"; do
  3. exiftool -P -overwrite_original -filename=%f_CLEAN.%e -gps:all= "$f"
  4. done
');