ctpv/sh/prev/any.sh
2022-06-21 01:18:04 +05:00

8 lines
92 B
Bash

# any: exiftool cat
if exists exiftool; then
exiftool -- "$f" || true
else
cat < "$f"
fi