QUOTE(DeCompile @ 31 Jul, 2008 - 06:57 AM)

2. Creates a directory (although the syntax is incorrect)
It should read: mkdir directory /home/........ etc
Where directory is the folder to be created.
Nope, it would create the directory cs604, and any directories leading up to it if they don't exist.
QUOTE(DeCompile @ 31 Jul, 2008 - 06:57 AM)

3. Removes an entry, the -rf switches means it will also delete any sub-entries too. Although it will only take wildcards and a single entry, not both directory1 directory2
'rm' will take as many arguments as you have memory.
QUOTE(DeCompile @ 31 Jul, 2008 - 06:57 AM)

4. pwd is also used with the wrong syntax.
Used correctly it would state: pwd (user) and allow the users password to be changed.
'pwd' prints the working directory, 'passwd' changes the user's password (and the username is optional).
QUOTE(DeCompile @ 31 Jul, 2008 - 06:57 AM)

7. List command yet again, with different syntax. This syntax does not work with all *nix based systems, but it will check the name of the file system entries and list those that have more characters than list
Nope, the '>' redirects the output of 'ls -l' to the file named 'list'.
QUOTE(DeCompile @ 31 Jul, 2008 - 06:57 AM)

8. ps fax is the equivalent of Task Manager in windows. Using the less syntax shortens it's outputs to very simple information.
Kind of. You got the first part right, but what 'ps' does by default is dump a listing of currently running processes to stdout. The pipe redirects it to the 'less' program, which displays enough to fill the screen and lets the user scroll down.
This post has been edited by Tom9729: 31 Jul, 2008 - 01:23 PM