View Single Post
Old 10-20-2004, 09:04 PM   #47 (permalink)
theFez
Crazy
 
Location: here and there
learn to love the command line. learn to navigate the file structure and find information. once you do, you will hate using the mouse.

not sure what a command does or what arguments it can take? check the man pages.

not sure what chmod does? type

Code:
$ man chmod
and a manual page is displayed.

you can even

Code:
$ man man
if you want.
theFez is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37