#!/bin/sh -u # A shell script to display the users currently logged in. #------------------------------------------------------------------ # Syntax: $0 (no command line arguments used) #------------------------------------------------------------------ # Purpose: Display the currently logged-in users. #------------------------------------------------------------------ # -IAN! idallen@idallen.ca # Set a standard shell search path and a friendly umask. # PATH=/bin:/usr/bin ; export PATH umask 022 date echo "The users currently online are:" who