User Name Ken_Turkowski_984
Member Since 2003-07-22
Total number of Feedback Posts: 1
Total number of comments: 0
Last 10 Feedback Posts by Ken_Turkowski_984 [ Search for All ]
sizimg 1.19 (Mac OS X)
I like to use sizimg in shell scripts to do batch processing. Here's one that I use to convert a series of images to another: #!/bin/sh if [ $# -lt 2 ] then echo Usage: $0 '<source family root> <destination family root> [options]' exit fi srcRoot="$1" dstRoot="$2" shift 2 for file in $* do suffix=`expr "$" : "$\(.*\)"` echo sizimg "$" -o "$$" "$@" sizimg "$" -o "$$" "$@" done exit 0 [alert admin]
Tuesday, January 04 2005 @ 10:11 AM PST
Last 10 Comments by Ken_Turkowski_984 [ Search for All ]
No user comments.