There are times that youll need to use the Terminal Command-Line Interface
(CLI), especially when troubleshooting.
Here are a few common Terminal Commands I found to be useful for OS X/Unix newcomers
like myself.
Preparation:
Before we start, open the application called TextEdit in the Applications
directory. Change the format to Make Plain Text from the Format
menu (note that this tutorial works with the Make Rich Text format
as well with a .rtf extension; however, I prefer the .txt
extension because it is the universal cross platform extension for plain text
files). Then save the file with the name test.txt to your Desktop
Now open the Terminal application in the Applications directory. The start up
screen will look something like this:
Last login: Sun Jan 5 12:51:58 on
ttyp1
Welcome to Darwin!
[Alexander-Mclean-IIIs-Computer:~] alex%
Unlike the Mac OS Xs nice Aqua interface, the Terminal will display
the file data and directory structure in a raw black and white format. The Terminal
usually starts off in your home directory. (user%) So let's get started with a command-line
to change the directory to the “Desktop” directory.
Commands:
1) cd
Cd is short for change directory. This will change the current directory
to the directory specified. To access the Desktop directory, type:
cd Desktop
Hit return to execute the command (do this every time to execute each command
line).
To return to your home directory, type:
cd ~
But for now let's keep the path to the Desktop (cd Desktop).
2) mkdir
Mkdir is short for make directory (make folder). To make a test directory,
type:
mkdir test
3) pwd
Pwd displays the path of the current directory. Type:
pwd
will display something like this:
/Users/alex/Desktop
4) cp
Cp is short for copy. To copy the test.txt file inside of the
test directory on the Desktop, type:
cp /Users/alex/Desktop/test.txt test/test2.txt
This placed a copy of the test.txt file inside the test
directory and named it test2.txt.
Notice after the command cp we type pathdir+old name
space, than dir+new name.
Change (cd) directory to the test directory (see above for help).
5) ls
Ls is short for list. Ls will list files in a directory. Type:
ls
will output.
test2.txt
6) mv
Mv will change the name of a file. From the test directory type:
mv test2.txt test3.txt
Notice after the command mv we type old name space,
than new name. Type ls to check if it worked.
7) rm
Rm is short for remove (delete). To remove the test3.txt file
inside the current directory type:
rm test3.txt
8) man
Man is short for manual. For example to display the manual for rm
type:
man rm
This will display information about the rm command. You can type
any command after man to access additional information on that topic.
9) “Q” key
Q is short for quit. To escape the manual screen, hit the "Q"
key:
If you have any questions, please search or post a question to the forum.
Next Mac OS X Page:
[1]
234
NewSourceMedia is providing links to these listings as
a courtesy, and makes no representations regarding the content or
any information related thereto. Any questions, complaints or claims
regarding the downloaded content or details must be directed to the appropriate
publisher. We do not encourage or condone the use of any
software in violation of applicable laws.