Open a terminal window Start an editor session by entering: gedit myscript Enter the following lines into the editor window: #!/bin/sh echo "What is your name?" read NAME echo "Hello, $NAME" Save the file and exit the editor Make the file executable via: chmod 755 myscript Run the file via: ./myscript