aim / monitoring.sh
weihan1's picture
Add files using upload-large-folder tool
9c6e6f0 verified
Raw
History Blame Contribute Delete
110 Bytes
for dir in ./*/; do
animal=$(basename "$dir")
count=$(ls -1 "$dir" | wc -l)
echo "$animal: $count"
done