Finally 2 last commands :
the
pwd ( Print Working Directory)
and the
date commands.
pwd is nice if you dont know where you are.
Lets say you have been toying around with UNIX for some time now and you have gone to a directory but dont know where exaclty it is! pwd fixes this by outputting where you are.
Lets say I want to find where exaclty my home directory is,
Code:
[admiralty:~] admiral% pwd
/Users/admiral
[admiralty:~] admiral%
pwd tells me that my home directory is in the "users" folder. (this is a simple example, for now pwd might not come in handy but it the future it will

)
And finally the date command.
It tells you the date, time, day and year , useful if you want to know the time and date
sample:
Code:
[admiralty:~] admiral% date
Sun Oct 7 16:51:31 EDT 2001
[admiralty:~] admiral%
As you may notice the time is in the 24 hours format, and it has the Hours : minutes : seconds format as well.
Well, these are the most basic UNIX commands that one needs to survive
Admiral