mirror of
https://github.com/NikitaIvanovV/ctpv.git
synced 2024-11-24 13:53:07 +01:00
8 lines
92 B
Bash
8 lines
92 B
Bash
# any: exiftool cat
|
|
|
|
if exists exiftool; then
|
|
exiftool -- "$f" || true
|
|
else
|
|
cat < "$f"
|
|
fi
|