You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The first line is called [shebang](http://en.wikipedia.org/wiki/Shebang_%28Unix%29)
# That line in any script determines the script's ability to be executed like a standalone executable without typing sh, bash, python, php etc beforehand in the terminal.
# Use echo to print a string
# Use $ to print a variable
echo "Hello, world! It's $(whoami) on $(hostname)!"
# Using `man` command to view a system’s reference manuals (man pages)