Author Archive
twenty five minutes of image resizing
by admin on Dec.13, 2009, under Uncategorized
find . | awk ‘/((\.jpg)|(\.JPG))$/ {print $0;}’| rename -v ’s/[\(]/n/g’
find . | awk ‘/((\.jpg)|(\.JPG))$/ {print $0;}’| rename -v ’s/[\)]//g’
find . | awk ‘/((\.jpg)|(\.JPG))$/ {print $0;}’| rename -v ’s/ /_/g’
find . | awk ‘/((\.jpg)|(\.JPG))$/ {print $0;}’| rename -v ’s/JPG/jpg/g’
find . | awk ‘/((\.jpg)|(\.JPG))$/ {print $0;}’ | awk ‘{print substr($0,3)}’ | xargs –verbose -I {} echo “convert ‘{}’ -resize ‘800×600>’ ../resize/{}” | sh
Hello world!
by admin on Dec.11, 2009, under Uncategorized
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!