Skip to content

Commit

Permalink
added exif-del that removes all EXIF meta tags from an image
Browse files Browse the repository at this point in the history
  • Loading branch information
tpo committed Feb 19, 2014
1 parent 338d8f8 commit 2c61b09
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -103,6 +103,12 @@ usage: copy_stdin_to_file file_name

copy input to file

### exif-del

usage: exif-del image

remove all meta-tags from exif informations

### firefox-sleep

usage: firefox-sleep
Expand Down
13 changes: 13 additions & 0 deletions exif-del
@@ -0,0 +1,13 @@
#!/bin/bash

help() {
echo "usage: exif-del image"
echo
echo " remove all meta-tags from exif informations"
echo
exit 255
}

[ "$1" == "--help" ] && help

exiftool -All= "$1"

0 comments on commit 2c61b09

Please sign in to comment.