un outil de sondage - retour accueil
git clone git://bebou.netlib.re/kun
Log | Files | Refs | README |
commit be0fb87dcd3069d61ac9f668c15ab79f79c66263 parent 8048f56db89398a2df34061ed06f91db7f55a2a6 Auterice: Arthur Pons <arthur.pons@unistra.fr> Date: Tue, 24 Sep 2024 14:53:46 +0200 Avoir un editeur par défaut si EDITOR n'est pas set Diffstat:
M | commands.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/commands.sh b/commands.sh @@ -10,7 +10,7 @@ create() { if [ -n "$text" ];then echo "$text" > $folder/question \ || { _die "erreur à l'écriture du sondage $id";return 1; } - else $EDITOR $folder/question + else ${EDITOR:-vim} $folder/question fi if [ -s "$folder/question" ];then _success "Sondage {$id} créé avec succès"