to find a user on the pegasus system by location try the folowing
'finger | grep -i [location]'
This works by taking the output of the finger command (which lists
everyone logged onto the pegasus system) and then filtering it with the
grep utilty (which is a text search utility like 'find' in dos). The '-i'
makes it case insensitive.
to edit your prompt
put the following in your .login file after the echo "" line
set prompt="your prompt"
To view the entry message at any time (you're at a command prompt) type 'more /etc/motd'