1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00

Merged branch konaesan into master

This commit is contained in:
Elisée Othniel AMEGASSI 2017-01-19 17:18:49 +00:00
commit 676cba92ed

View File

@ -46,10 +46,14 @@ Themes:
(\\e[0m\e[0;34m 39 \\e[0m\e[0m) ura
(\\e[0m\e[0;34m 40 \\e[0m\e[0m) vag
"
echo -e "Usage : Enter Theme Number (\\e[0m\e[0;34mOPTION\\e[0m\e[0m)"
echo -n 'Enter OPTION : '
read NUM
case $NUM in
echo -e "Usage : Enter Desired Themes Numbers (\\e[0m\e[0;34mOPTIONS\\e[0m\e[0m) Separated By A Blank Space"
#echo -n 'Enter OPTION : '
#read NUM
read -p 'Enter OPTION(S) : ' -a array
for i in "${array[@]}"
do
case $i in
0) echo '0 is not in OPTION' ;;
1 | 01) echo 'Theme: aci'
@ -174,3 +178,4 @@ case $NUM in
*) echo 'INVALID OPTION!' ;;
esac
done