1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | #!/bin/sh
FILE2=`zenity --file-selection --directory --title="Select the source dir"`
FILE1=`zenity --file-selection --directory --title="Select a destination dir"`
case $? in
-1)
echo "An unexpected error has occurred.";;
esac
echo "hai scelto source:" $FILE2
echo "hai scelto dest:" $FILE1
echo ufraw-batch --size=1920x1080 --out-type=jpeg --out-path=$FILE1"/" $FILE2"/*.NEF"
|