At the command prompt:
$ echo "Hello World"
Output:
Hello World
To create a script, create a text document with the following content:
#!/bin/sh
echo "Hello World"
Save the script with the name hello.sh (or any filename) and make the script executable by giving the f...