mirror of
https://github.com/techarkit/shell-scripting-tutorial.git
synced 2025-08-03 07:34:30 +00:00
12 lines
118 B
Bash
12 lines
118 B
Bash
#!/bin/bash
|
|
## Questions
|
|
|
|
echo "Hi"
|
|
read $REPLY
|
|
|
|
echo "How are you?"
|
|
read $REPLY
|
|
|
|
echo "Whats your Name?"
|
|
read $REPLY
|