Internet Explorer in all versions is a dangerous browser. It has many deficiencies and security vulnerabilities that make it unsafe.
You should instead use a current version of Chrome or
Firefox if you're using windows or Safari for the Mac.
This site will not function properly in Internet Explorer. Emails will not be sent, downloads will not function, assignments will not be
submitted...
To work with the vi editor to create a shell script
Instructions
Use vi to create a shell script called wherearethey in your bin directory by entering the following script:
echo -n "Who are you looking for: "
read user
if [ -n "$user" ]
then
list=`w | grep $user | cut -c19-30`
if [ "$list" != "" ]
then
echo "The user $user is logged in from $list"
else
echo "The user $user is not logged in now"
fi
fi
Make the script executable and run the script. Make an attempt to understand what the script is doing and how it is doing it.