我有这个脚本,它使用 exiftool 12.57 处理 Ubuntu 22.04 上子文件夹中的图像:
#!/bin/bash
set -e
DIR=/path/to/photos
for f in $(find "${DIR}" -type f -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png");
do
echo "processing ${f}..."
exiftool "${f}" >> output.txt
printf -- '#%.0s' {1..80} >> output.txt
printf '\n' >> output.txt
done
但是当它到达一个空文件时,它只是停止而不向 stdout/stderr 抛出任何警告或错误:
$ tail output.txt
################################################################################
ExifTool Version Number : 12.57
File Name : 20222601_DSC00057.JPG
Directory : /path/to/photos/experiment 11
File Size : 0 bytes
File Modification Date/Time : 2020:10:26 15:03:22+01:00
File Access Date/Time : 2023:03:02 16:47:51+01:00
File Inode Change Date/Time : 2023:03:02 15:07:08+01:00
File Permissions : -rw-rw-r--
Error : File is empty
该文件确实是一个 0 字节文件:
$ ls -larth /path/to/photos/experiment\ 11/20222601_DSC00057.JPG
-rw-rw-r-- 1 1000 1000 0 Feb 12 2021 '/path/to/photos/experiment 11/20222601_DSC00057.JPG'
我怎样才能让脚本继续处理其他文件,因为还有很多包含照片的文件夹要处理?
版本信息
$ bash --version
GNU bash, version 5.1.16(1)-release (x86_64-pc-linux-gnu)
$ cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04.2 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.2 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy
$ uname -mor
5.19.0-32-generic x86_64 GNU/Linux
$ exiftool -ver
12.57
为了后代,也因为我发现它也很有趣,我将 steeldriver 的答案重建为社区 wiki:
检查一个空文件并且不要求
exiftool
处理它:阅读
man bash
。