Shell scripting tutorial
From Linuxintro
Hello world
echo "hello world"
#!/bin/bash echo "hello world"
input
echo "what is your name? " read name echo "hello $name"
Note that the variable is called $name, however the correct statement to read it is
read name