Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FILES="/var/www/html/*"
- cd "/var/www/html/"
- for f in $FILES
- do
- echo "Processing $f file..."
- # take action on each file. $f store current file name
- #cat "$f"
- identify -verbose "$f" | sed -n '/.*Pixels: /s///p' >>report.txt
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement