Last active
April 12, 2017 21:03
-
-
Save nicinabox/a441bc369efb4cc19ab1ded7a8992da1 to your computer and use it in GitHub Desktop.
Revisions
-
nicinabox revised this gist
Apr 12, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,9 +3,9 @@ # Usage: rolls.sh PATH for path in $1/**; do dirname=`basename "$path"` for file in $path/**; do exiftool -overwrite_original -headline="roll $dirname" "$file" done done -
nicinabox revised this gist
Apr 12, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,6 @@ for path in $1/**; do dirname="$(basename "${path}")" for file in $path/**; do exiftool -headline="roll $dirname" "$file" done done -
nicinabox created this gist
Apr 12, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #!/bin/bash # Usage: rolls.sh PATH for path in $1/**; do dirname="$(basename "${path}")" for file in $path/**; do exiftool -headline="roll $dirname" $file done done