échappement des variables
This commit is contained in:
parent
416200964f
commit
fe9ebee885
@ -82,7 +82,7 @@ if [ ! $1 = "" ]; then
|
||||
fichierprofil="$1"
|
||||
. "$1"
|
||||
else
|
||||
cd $dossierprofil
|
||||
cd "$dossierprofil"
|
||||
fichierprofil=$(ls -1 *.conf | cut -d. -f1 | \
|
||||
zenity $W $H $iconborg --list \
|
||||
--title "Liste des profils" \
|
||||
@ -289,7 +289,7 @@ fi
|
||||
|
||||
elif [ "$choixmenu" = "ap" ];then
|
||||
# Afficher le profil
|
||||
zenity $W $H --info --text="<tt>$(cd $dossierprofil && cat "$fichierprofil".conf)</tt>"
|
||||
zenity $W $H --info --text="<tt>$(cd "$dossierprofil" && cat "$fichierprofil".conf)</tt>"
|
||||
|
||||
|
||||
elif [ "$choixmenu" = "qu" ];then
|
||||
|
@ -84,8 +84,8 @@ vars=$(zenity --forms \
|
||||
nomsauvegarde=$(echo $vars | cut -d\| -f1)
|
||||
profilename=$(echo $vars | cut -d\| -f2)
|
||||
|
||||
if [ "$nomsauvegarde" = "" ];then;zenity $W --error --text "Pas de nom de sauvegarde";exit;fi
|
||||
if [ "$profilename" = "" ];then;zenity $W --error --text "Pas de nom de sauvegarde";exit;fi
|
||||
if [ "$nomsauvegarde" = "" ];then zenity $W --error --text "Pas de nom de sauvegarde";exit;fi
|
||||
if [ "$profilename" = "" ];then zenity $W --error --text "Pas de nom de sauvegarde";exit;fi
|
||||
|
||||
cat << EOF >> "$dossierprofil""$profilename".conf
|
||||
nomsauvegarde="$nomsauvegarde"
|
||||
@ -129,7 +129,7 @@ zenity $W --info --text "Le dépôt à bien été ajouté.\nLancez «Borg Zenity
|
||||
|
||||
elif [ "$choixmenu" = "ap" ];then
|
||||
fichierprofil=$(ls -1 *.conf | zenity $H $W --window-icon=$HOME/.icons/borg.svg --list --title "Liste des profils" --text "Choisir un profil dans la liste" --hide-header --column "profil")
|
||||
zenity $W $H --info --text="<tt>$(cd $dossierprofil && cat $fichierprofil)</tt>"
|
||||
zenity $W $H --info --text="<tt>$(cd "$dossierprofil" && cat "$fichierprofil")</tt>"
|
||||
|
||||
elif [ "$choixmenu" = "" ];then
|
||||
exit
|
||||
|
Loading…
Reference in New Issue
Block a user