linuxkurs/beispiele/5/11-read.sh

7 lines
97 B
Bash

#/bin/sh
echo "Name?"
read name
echo "Age?"
read age
echo "Hello $name, you are $age years old"