Sleds/posting/count-images.sh

13 lines
183 B
Bash
Raw Normal View History

2025-03-13 21:28:38 +00:00
#!/bin/bash
#
# Count all .sub images
# Usage: count-images.sh DIR
DIR=$1
if [ ! -d "$DIR" ]; then
echo "Usage: count-images.sh DIR"
exit 1
fi
find "${DIR}" -name '*.jpg' | wc -l