All pastes #2049015 Raw Edit

Miscellany

public shellscript v1 · immutable
#2049015 ·published 2011-04-21 14:55 UTC
rendered paste body
#!/bin/bashfolder="$(zenity --file-selection --directory)"count="$(find "$folder" -mindepth 1 | wc -l)"percentage="$(echo 100 $count | awk '{print $1/$2}')"echo "$percentage"files="$(find "$folder" -mindepth 1)"(files="$(find "$folder" -mindepth 1)"echo "$percentage"for lfile in $filesdo	name="$(basename $lfile)"	echo "# Sichere $name" ; echo $lfile >> ~/filelist && sleep 0.05	echo "$percentage"	percentage="$(echo $percentage | awk '{print $1+$1}')"doneecho "100"echo "# Das Image wurde erfolgreich erstellt") |zenity --progress \--title="Einen Ordner sichern" \--text="Erstelle Datei-Liste" \--percentage=0if [ "$?" = -1 ] ; thenzenity --error \--text="Update canceled."fi