meta
grep file dimensions
for nxn in * ; do identify $nxn | grep -oE '([0-9]*)x([0-9]*)[[:space:]]' >> list-sizes.txt; done
grep file dimensions and names
for nxn in * ; do identify $nxn | echo $nxn `grep -oE '([0-9]*)x([0-9]*)[[:space:]]'` >> list-sizes-names.txt ;done
find file weight
find * -maxdepth 2 -type f -exec du -sh {} \; > list-weight.txt
find directory weight
find * -maxdepth 2 -type d -exec du -sh {} \; > list-weight-dir.txt
alternate find directory weight (not sorted)
du -h -d 1 . > dir-weight.txt