Ubuntu Pastebin

Paste from gigirock at Mon, 20 Jul 2015 21:32:32 +0000

Download as text
 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"
Download as text