#!/bin/bash #print a simple hello followed by the command whoami which displays the currently logged in user echo "Hello "$(whoami) #print all items within the current directory ls #print every items content in the current directory that begins with a l and ends and with a h cat l*h #exit script exit 0