%PDF- %PDF-
Direktori : /mnt/fotky/ |
Current File : //mnt/fotky/process.sh |
#!/bin/bash set -x find . -iname '*.PEF' | sort | { while read line; do filename=`rev <<< "$line" | cut -d"." -f2- | rev`; dcraw -T -c -q 3 $line | convert -quality 90 tif:- $filename.jpg; rm -f $line; done; }