June 2012
Beginner
227 pages
5h 43m
English
Script output is provided by the echo and printf commands, which we described in Screen Output:
➜echo "Hello world"Hello world ➜printf "I am %d years old\n" `expr 20 + 20`I am 40 years old
Input is provided by the read
command, which reads one line from standard input and stores it in a
variable:
➜read nameSandy Smith<ENTER> ➜echo "I read the name $name"I read the name Sandy Smith
Read now
Unlock full access