From eea95c8980a290d753777da173935f39f1589b9b Mon Sep 17 00:00:00 2001 From: Dmytro Aleksandrov Date: Fri, 30 Aug 2019 18:43:01 +0300 Subject: T1621 remove misc ops after python/xml rewrite --- scripts/yesno | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100755 scripts/yesno (limited to 'scripts/yesno') diff --git a/scripts/yesno b/scripts/yesno deleted file mode 100755 index 260a23c..0000000 --- a/scripts/yesno +++ /dev/null @@ -1,31 +0,0 @@ -#! /bin/bash -# Usage: yesno prompt... - -default= -if [ "$1" = "-y" ] -then default='y'; shift -elif [[ "$1" = "-n" ]]; then - default='n'; shift -fi - - -if [ $# -eq 0 ] -then prompt="yes or no: " -else prompt="$*" -fi - -while true -do - read -p "$prompt" || exit 1 - if [ -z "$REPLY" -a ! -z "$default" ] - then REPLY=$default - fi - case "$REPLY" in - y*|Y*) exit 0;; - n*|n*) exit 1;; - *) echo "Answer yes or no please";; - esac -done - - - -- cgit v1.2.3