mail: Occasionally when you login, you will also get the message:
You have mail.
% mail<return>
Most mail will be from me indicating assignments, etc, but it is possible to send mail to other people. If you save your mail it is put into a file on your area called mbox.
To send mail to someone, you must know their user name:
% mail saila <return>
got your last message. See you sunday <return>
bye-bye for now. Jocelyn<return>
^D
%
Note: The ^D is a standard Unix input terminator. It even
terminates your job!! Some Unix mail systems also ask for a subject
heading so that the receiver can categorise his/her mail (and
perhaps reject "junk" mail).
Do not abuse the mail system or you will be charged for it!! You may save your mail but if disk space is limited then it will be deleted by the system guru.
Changing or setting your password - passwd:
% passwd<return>
Old password: Not echoed
New password: " "
Check: " "
%
Who else is on the system at the moment - who
% who<return>
[ information indicating user name
their terminal number and when
they logged on, of each user. ]
%
How do I look at a file page by page - more
% more file.p<return>
[ The file page at a time ]
By hitting the space bar you can get the next page of
information. By typing 'q', you can quit the more program.
% man ls<return>
[ Information on ls program ]
By hitting the space bar you can get the next page of
information. By typing 'q', you can quit the man program.
Try man more<return>.
% ls<return>
[ name of all the files ]
To get more information than just the name of the file:
% ls -l<return>
% ls -l file1 file2 file3....... <return>