1
0
mirror of https://github.com/danog/learn-bash.git synced 2024-11-30 04:19:06 +01:00

Update learn.sh

This commit is contained in:
Daniil Gentili 2015-05-30 18:40:29 +02:00
parent 47a3888ff8
commit cbcf11b91f

View File

@ -232,7 +232,7 @@ done
sleep 2 sleep 2
} }
while [ "$?" = 0 ]; do until [ "$n" = q ]; do
echo -n "This project is licensed under the GPLv3 license. echo -n "This project is licensed under the GPLv3 license.
Welcome to the Learn shell scripting script! Welcome to the Learn shell scripting script!
This script can be of great help This script can be of great help
@ -247,7 +247,7 @@ To start, here are the lessons:
1. Introduction. 1. Introduction.
2. My first Hello World! 2. My first Hello World!
Your selection (number): " Your selection (number, enter q to exit.): "
read n read n
clear clear
eval learn_$n eval learn_$n