exif をスクリプトで編集する
使うツール exif
ubuntu:
$ sudo apt install exif
GPS の情報を削除する
$ exif --remove --ifd GPS --output IMG_001.webp IMG_001.webp
応用: ディレクトリツリーにある webp|webp のファイルから GPS の情報を削除する
$ find . -type f -iregex '.*\.jpe?g' | xargs -n 1 --replace=File bash -c "echo File; exif --ifd GPS -x File | (! grep -v exif) || exif --remove --ifd GPS --output File File"