Was wondering if anyone knows a website that will teach me how to use the terminal in apple?
I've learned one command (top) and would love to learn everything I can about the terminal. Thanks.
Page 1 of 1
Terminal Expert Needed
#4
Posted 08 August 2004 - 03:23 PM
Any site that teaches you about UNIX! (The terminal in OS X is just like the terminal in Linux, except there are little OS X specific tricks you can do to change programs, such as making the dock at the top of the screen or setting Safari to debug mode).
Might want to bookmark this. Some of the stuff in here are Linux specific (for example, I do not believe OS X has eMacs) and some are too advanced for a beginner to use, but its a good glossary.
http://infohost.nmt....x/unix_cmd.html
Learn to change directories in UNIX (terminal) first. To open a folder, type:
If the folder name contains spaces, use a before the space. For example, Adobe Photoshop in terminal would be Adobe Photoshop. If you want to go back one folder, type
to see a list of all files and folders in the current directory, type
Might want to bookmark this. Some of the stuff in here are Linux specific (for example, I do not believe OS X has eMacs) and some are too advanced for a beginner to use, but its a good glossary.
http://infohost.nmt....x/unix_cmd.html
Learn to change directories in UNIX (terminal) first. To open a folder, type:
code:
cd (folder name)
If the folder name contains spaces, use a before the space. For example, Adobe Photoshop in terminal would be Adobe Photoshop. If you want to go back one folder, type
code:
cd ..
to see a list of all files and folders in the current directory, type
code:
ls
#6
Posted 08 August 2004 - 04:52 PM
In reply to:
If the folder name contains spaces, use a before the space
If the folder name contains spaces, use a before the space
Another way to handle spaces is to enclose the whole title in quotes " ".
In reply to:
to see a list of all files and folders in the current directory, type
to see a list of all files and folders in the current directory, type
While [ls ] telles it to list the files it will not stop them from rolling off the screen if there is more than one page. Therefore you need to pipe the results through [ more ] or actually more powerful [ less ].
To find out what all of these and any other command does and how to use it type
code:
man <command>
Thisa will give you the user help pages in a UNIX env.
#7
Posted 09 August 2004 - 02:55 AM
Follow this link below from a non-expert in Terminal, but a mere beginner:
UNIX tutorial and
UNIX tricks
UNIX tutorial and
UNIX tricks
Page 1 of 1



Sign In
Register
Help


MultiQuote