linuxkurs/beispiele/5/11-read.sh

7 lines
97 B
Bash
Raw Normal View History

2019-01-13 18:49:01 +01:00
#/bin/sh
echo "Name?"
read name
echo "Age?"
read age
echo "Hello $name, you are $age years old"