Beginner’s guide to Apple Terminal, part 1

Apple OSX Terminal Let’s be honest – Apple has gained a lot in market share last year, so there are plenty of former Windows users who just switched to the Mac. This tutorial is for those new switchers who never had the courage to open up Terminal, OSX’s most underrated power-tool. This tutorial is not for the Linux/Unix gurus, but for the casual daily worked who wants to improve his computer operating skills and

First, the basics: you probably remember Windows Command Prompt, though chances are you never had to use it. Well now, Terminal is like Command Prompt on steroids. This is because Apple’s OSX is built around Unix, the most powerful geek-oriented Operating System ever, but with a nice-looking user-friendly gift-wrap. The result? OSX is an operating system that kicks Window’s buttocks any time of the day. Chances are you’ll never have to use Terminal, but I strongly suggest it – as any real Power User will tell you, mastering the command prompt commands is the ultimate swiss-knife for the computer geek.

In today’s lesson you’ll learn to start the Terminal, move around, look around, open up things from within and remove things.

  • How do you launch it? – easily – just start Finder open Applications, and from within open the Utilities folder. There it is, Terminal. Looks complicated, but you only have to do it once – you can drag the Terminal icon into the dock for easy launching it in the future. The real power user, though, can find and launch it in less than a second – if you have QuickSilver installed on your system, just type Ctrl+Spacebar, then start typing Terminal. Usually just typing “T” is enough. See? Real power at your fingertips!
  • What can you do with Terminal? – anything. Back in the old days, when there were no cute icons, windows or graphic menus, people did their daily office tasks via the command line. You can do it as well, as sometimes it’s a lot faster then dragging the mouse around, copying files, moving them, looking for the etc…

Let’s look at some basic useful operations you can do with the Terminal:

  • going to any given folder – you might have noticed that Finder won’t let you see plenty of system folders. But the geek in you really wants to see what’s inside his new shiny MacBook. Nothing simpler: once you fire up Terminal, at the command line prompt type:
  • cd /

    Then you press the Enter(Return) key. (Important! you need to press this key after every command you type in the Terminal, to tell it “i’m done, now show me what you’ve got for me” – thanks for the suggestion, Doug).
    Afterwards you can follow by

    ls

    What you see is the list of all the main folders on your disk. It should look similar to :

    my_computer_name:/ username$ ls
    Applications   System      cores      mach_kernel usr
    Desktop DB     User Guides And Information
    dev        mtasc.yaml  var
    Desktop DF     Users       etc        opt
    Developer      Volumes     home       private
    Library        automount   mach       sbin
    Network        bin         mach.sym   tmp

    The cd command (short for Change Directory) allows you to move to a different folder than the current one. Just type the name of the target folder after it, and press Enter at the end. The ls (short for LiSt) command lists the contents of the current folder.

    One extremely useful Power User trick: after you type the name of a command, try pressing the Tab key. The system will try to auto-complete your command and will show you what you can do with it. For instance, typing cd (notice the blank space ater it) and pressing Tab will show you the names of the folders you could go to from the current one. Same goes for most other commands, actually. In time you’ll get accustomed to only starting typing your command, pressing Tab and letting the system complete the rest. For now, though, just take notice that it exists.

    The folder named / is called “root” and represents the root of your operating system. Every other folder is just one of its branches. Any user registered on the computer has its own personal folder, much like in Windows. Your personal folder is named after you and it’s a subfolder of the Users one. Go ahead, try it – cd Users followed by ls. Once you see the name of your username type cd username. A shortcut for this is cd ~ (on a MacBook with US keyboard, the little snake (tilda) is to be found near the ‘z’ key). Under your personal folder, you’ll find your usual subfolders, the ones you use everyday – Documents, Desktop, Movies, Pictures, etc. Go ahead, try to navigate by ‘cd’ there. Oh, and at any time, if you just want to go back to the parent folder, just type
    cd ..
    . Here .. is a command line word meaning “parent”. the root folder is it’s own parent.

    So far so good, though I probably didn’t impress you much. Let’s try this then:

  • open up any folder, file or program – once you open up Terminal, you just go in the folder that interests you by means of cd. Then, just type open followed by the name of the folder, file or program that you want to open. Magically, it will get opened with the associated program. For instance, let’s do this:
  • my_computer_name:/ Alex$ cd ~
    my_computer_name:~ Alex$ cd /Applications/
    my_computer_name:/Applications Alex$ open Utilities/

    What happened here is that I opened up the Utilities folder from within Applications by using just my magic Terminal skills. I could have opened any text document, picture, mp3, movie, application, etc. The open command rocks.

  • remove files without going to the Trash
  • You know the Trash, the place where things go after you delete them. The place you need to empty whenever you want to really erase something. Well, as any power user knows, if you really want to erase something you’ll have to do it yourself:
    Step 1. go to the file that you want to remove
    Step 2. make sure you got the rights to remove it (should be one of your files, from within your directories) and that you’re not really breaking anything(careful here, you don’t want to erase any of the system files, do you?)
    Step 3. call the command rm followed by the name of the file to be erased. rm is short for ReMove. For instance:

    mycomputer:~ alex$ cd Desktop/
    mycomputer:Desktop alex$ ls
    Screen shot 2011-02-19 at 8.32.49 AM.png
    rangyTest.html
    rangy_full.js
    mycomputer:Desktop alex$ rm rangyTest.html

    Warning! If the name of the file you want to erase contains a space, then you’ll have to mention it by typing a ‘\’ character before the space. This looks complicated and it really is; using the ‘tab’ shortcut mentioned above might help you a bit in the process.

Did you succeed? Great! You didn’t? Don’t worry – using the Terminal is for pros, you’ll have time to catch on as we go into the next lessons.

Until then, let’s look back – in today’s lesson you’ve learned what Terminal is, how to start it, how to move around the system, look around, open up any things from within and, carefully, how to remove things. Next lesson will include tips on how to quickly move and erase entire folders, how to quickly learn your IP address(without going to the System Preferences app and more). Stay tuned and let us know what you think, by dropping a word in the comments!

Oh, and, if you’re impatient, there are lots of other resources around that will help you in the meantime. For instance, check this O’Reilly series of tutorials, this command list with descriptions over here or Apple’s description of the Terminal.app.

37 thoughts on “Beginner’s guide to Apple Terminal, part 1

  1. Pingback: Beginner’s guide to Apple Terminal, part 2 | tips | Hack the Day

  2. spencer

    Hey, great tutorial. I’ve been searching for a while “how to use Terminal” after switching over to Mac, and I stumbled upon your site. I’ll check out some of the other Terminal links you posted. Great intro for noobs like myself. I don’t know what I really intend on doing with Terminal but nice to show off like I know what Unix really is!

  3. Alex Post author

    Glad you found this tutorial useful, Spencer. There are plenty of uses for the Mac Terminal out there, and although it might look scary for the noob, Terminal is worth the effort to use.

  4. Pingback: 3 tips you probably didn't know on your Mac Book - Hack the Day

  5. morc

    Hello
    I couldnt get past the “cd/1s thing, i tried all different combos cd / 1s ,, cd/1s,, cd / ls,, it just says No such file or directory?? am i stupid ? brad new imac 20 inch 2 months old.
    thanks

  6. Alex Post author

    Morc, sorry if I wasn’t too clear. After each command shown in the tutorials, you have to press the Enter/Return key. So cd / and ls are not on the same line, they are two different commands to be executed at different moments.

  7. morc

    Ah please forgive me for sounding so frustrated in that email, (quite embarrassing ) . Months have passed since then. i was just slime, a single celled life form drowning in a sea of code and text.
    I have now evolved limbs and and will soon walk upright on two legs.
    thnx for this page

  8. Nick

    Nice beginners guide. It’s good to show people that the command line isn’t scary, but is a really useful tool. Because I run both Linux and OS X, The command line works itself into everything. You might want to explain more than file navigating though!

  9. HMF

    Nice beginner’s guide, I’m still trying to learn the commands instead of just copy/pasting everything! Really helped!

    P.S. Computers are like air conditioners, they stop working when you open windows!

  10. Craig

    Great tutorial for Terminal. I am a switcheroo from XP, though have some Unix syntax knowledge from my time at uni. I would love to gain the same confidence using Terminal that I had using MS Dos command line interface.

    Thanks again for your help.

  11. Pingback: The Command Line Interface « High School Computer Tech

  12. Pingback: 23 Essential Tools For Web Development on a Mac

  13. Bradley

    type this stuff in your command prompt or terminal for the shitty apple computers works both ways though. telnet towel.blinkenlights.nl

  14. Pingback: 23 Essential Tools For Web Development on a Mac | Geeky Bitch

  15. Hop

    I wanted to experiment with php pages locally rather than ftp a new file to my host every time I make a change. Attempted to follow instructions on page 25 of Learning PHP & MySQL by Michelle Davis & Jon Phillips.
    After I typed “sudo vi /etc/httpd/httpd.conf”, Terminal asked for my password. I would try to type it but my keystrokes wouldn’t show on the screen. I’d get an alert noise each time I tried to type a letter.

    For some reason it took my password after several attempts.

    Now I’m trying to type “%s/#LoadModule php/LoadModule php/
    But each keystroke is ignored except for an alert noise.

    Instead of text I get a series of “Whump” sounds. It sounds like I’m playing the bongos.

    Is there a way to get Terminal to take the text I’m typing?

  16. Pingback: GrindSmart » Blog Archive » 18 Essential Apps For Web Development on a Mac

  17. Pingback: Software technology tips and tricks time saving: Windows XP Command Line Hacking Tricks Guide

  18. Ryan

    when I type that ReMove command it doesn’t work. am i doing something wrong. this is what i typed: rm deleteme :

  19. Pingback: 5 Terminal Hacker tips for the Mac | Hack the Day - upgrade your life

  20. Alex Post author

    @amuyir: check out the post, I updated it with an example of using rm to delete a file.

    Keep in mind that, if you want to remove a folder instead of a file, you’ll need to use rm -r folder_name.

    But you should be VERY CAREFULLY when using rm with folders, because there’s no way back and if you type the wrong folder name you might mess things really bad.

  21. chit

    I am a Burmese. I am also a mac user , learning new things on it.
    The photo on top of site is of Pagoda in Burma.
    Please share your information.
    Thanks…

  22. Pingback: Terminal bake-off

  23. mike

    extremely helpful. easy to understand, accurate (some tutorials leave out important details which lead to frustrating dead ends) andin small bite sized pieces

    thank you

  24. Pingback: Great Developer Tools for Mac » doap.com

  25. Gerard Callaghan

    The ‘remove’ instruction was very poorly written. YOU ARE FORGETTING WHO YOU ARE SUPPOSED TO BE WRITING FOR…people who don’t know ANYTHING!…about terminal.

    All steps need to be clearly written. No presumptions please.
    Still, appreciate your effort, although I left frustrated.

  26. Doug vanderHoof

    Alex, thanks for the tutorial. I’ve never been able to use Terminal though people often recommend things to do with it.
    One problem I’ve always had was that they assumed I knew anything at all, like where to hit return or add spaces. I notice you left out the returns in your commands. I played around and figured out where to add some of them, but it might help future tyros if you give every shred of the process.
    Thanks again,
    Dv

Comments are closed.