Advertisement
killerbng

exif scrub

Apr 29th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.19 KB | None | 0 0
  1. exiftool -all= foo.jpg
  2.  
  3. for i in *.jpg; do echo "Processing $i"; exiftool -all= "$i"; done
  4.  
  5. exiftool -geotag= foo.jpg
  6.  
  7. for i in *.jpg; do echo "Processing $i"; exiftool -geotag= "$i"; done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement