dotfiles

<-- duh.
Log | Files | Refs | LICENSE

commit f673d4e7c58124a3658c607b6f5b160e918d69ca
parent fd1e5a62e954c994ca700df24693decdfa750749
Author: hhvn <dev@haydenvh.com>
Date:   Sun, 28 Mar 2021 14:01:48 +0100

.s/b/deexif: exif stripper

Diffstat:
A.scripts/bin/deexif | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/.scripts/bin/deexif b/.scripts/bin/deexif @@ -0,0 +1,7 @@ +#!/bin/sh + +while [ $# != 0 ] +do + exiftool -all= "$1" >/dev/null && echo "Stripped $1..." || echo "Failed to strip $1..." + shift +done