Answer:
Please note that the below script has been executed under bash shell in Ubuntu 16.04 system.
----------------------------------------------------------------------------------------------------------------------------------------
Script:
----------------------------------------------------------------------------------------------------------------------------------------
#!/bin.bash
#step 1
echo "Welcome to computer science society."
#step 3
echo "Date is = `date`"
#step 4
echo */ | wc
#step 5
echo $PATH
echo $USER
echo $SHELL
#step 6
echo "Printing disk usage"
echo "`df`"
#step 7
echo "Could you loan me "$"25.00?"
#step 8
echo "if x =2, x*x = 4, x/2 = 1"
#step 9
echo "`ls *.sh | grep c`"
#step 10
echo "Good Bye"
echo "Current Hour = `date +"%H"`"
#end of the script
Step-by-step explanation: