Skip to content

Commit 6755e1c

Browse files
authored
Update vivek.sh
1 parent ff5d9a8 commit 6755e1c

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

vivek.sh

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
#!/bin/bash
2-
figlet -f ANSI-Shadow Aryan|lolcat
3-
figlet -w 100 -f ANSI-Shadow Technologies|lolcat
42

5-
PS3="Welcome Vivek : "
3+
PS3="Welcome Vivek"
64

5+
# Print a stylish welcome message
6+
echo -e "\e[1m\e[32mWelcome to the Vivek Shell!\e[0m"
7+
8+
# Ask the user to select a language
79
select lng in Termux Ubantu
810
do
911
case $lng in
10-
12+
1113
"Termux")
14+
echo "Exiting..."
1215
exit ;;
1316
"Ubantu")
14-
bash ./start-ubuntu20.sh;;
17+
echo "Starting Ubuntu..."
18+
bash ./start-ubuntu22.sh;;
1519
*)
16-
echo "Ooops";;
20+
echo "Ooops, invalid selection."
21+
echo "Please select one of the following options:"
22+
echo " * Termux"
23+
echo " * Ubantu"
24+
;;
1725
esac
1826
done

0 commit comments

Comments
 (0)