From 3969d0b65fc930661627aef4a58c542292740b22 Mon Sep 17 00:00:00 2001 From: Jephte CLAIN Date: Mon, 7 Oct 2013 08:41:54 +0400 Subject: [PATCH] ajouter l'option -C --- ulib/.ulib_version | 2 +- ulib/pretty | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ulib/.ulib_version b/ulib/.ulib_version index 00750ed..b8626c4 100644 --- a/ulib/.ulib_version +++ b/ulib/.ulib_version @@ -1 +1 @@ -3 +4 diff --git a/ulib/pretty b/ulib/pretty index a0f5fcb..75acb9e 100644 --- a/ulib/pretty +++ b/ulib/pretty @@ -213,6 +213,7 @@ function check_interaction() { # -y retourner true si l'option -y a été spécifiée # -c retourner true si aucune option n'a été spécifiée # -i retourner true si l'option -i a été spécifiée +# -C retourner true si aucune option ou l'option -i ont été spécifiés function is_interaction() { case "$1" in -b|--batch) [ -n "$__interaction" -a "$__interaction" -eq 0 ];; @@ -220,6 +221,7 @@ function is_interaction() { -y|--automatic) [ -n "$__interaction" -a "$__interaction" -eq 1 ];; -c|--default) [ -n "$__interaction" -a "$__interaction" -eq 2 ];; -i|--interactive) [ -n "$__interaction" -a "$__interaction" -eq 3 ];; + -C) [ -n "$__interaction" -a "$__interaction" -ge 2 ];; *) return 1;; esac }