All pastes #2049004 Raw Edit

Unnamed

public shellscript v1 · immutable
#2049004 ·published 2011-04-21 14:30 UTC
rendered paste body
#!/bin/bashfolder="$(kdialog --getexistingdirectory ~)"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