mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-11 11:15:13 -04:00
7 lines
No EOL
119 B
Bash
Executable file
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 |