I really would like to learn to use the console and terminal on my macs-
do any of you know of a good manual, book or otherwise that could serve as a guide? I am hesitant to simply fumble around and learn that way (which is how I've learned everything else) because it is my understanding that one can do serious damage when playing around in terminal!
thx D
I can answer this question perfectly for you since I am taking second year University classes in computer science.
I am fairly proficient in using the unix command line, but this book is VERY useful for listing almost ALL commands and how to use them (even with examples and what parameters they take).
https://www.usask.ca/consumer_services/bookstore/store.php?item_key=40000082315&search_type=class
Also, if you want to know how to use a command type this:
man command where "command" is any command that you are unsure on how to use such as: grep, sudo, shutdown, ls, etc.
using "man" brings up "manual" pages that are 10-30 pages long for each showing typical usage, parameters, different modifiers to be used with the command, and system usage as well.
Here is a few basic commands for you to help you "navigate" through your directories (which is what finder does, except with a gui).
1.
ls lists current directories that you can go to (and files) in your current directory.
2.
cd directory changes your current directory (where you are) to "directory" (change directory to what you want to go to if its listed from "ls" such as "documents".
3.
mkdir directory make directory, where directory is the directory that you want to make.
There are many many more that I can show you (hundreds), but I don't think that would be very pleasant to read through, best to be done at ones own pace
