shell-whiz-toolkit/shell_scripts/lessons/inputs.sh
2014-07-01 19:51:31 -04:00

7 lines
No EOL
119 B
Bash
Executable file

#! /bin/bash
echo "We use read to read an input"
echo
echo "Type your name: "
read fname
echo "You name is $fname"
echo