Navigating files and folders
If you're new here, you may want to subscribe to my RSS feed.
Each time you open Terminal, you begin in your Home folder. To confirm this, type pwd and press Enter. The command pwd tells you where you are (i.e. your “Present Working Directory”). Any commands you type there will by default occur in this folder (unless you refer to some other directory explicitly.)
After opening Terminal and typing pwd on my computer, it returned /Users/richard.
To navigate to a new folder, use the cd (”change directory”) command. For example, to switch to the Applications folder, type cd /Applications. You can then type ls to list all of your Applications.
To move deeper into the hierarchy, use cd and the name of the folder. For example, if I’m in /Users/richard, I can type cd Movies to move into the Movies folder. I’ll then be in /Users/richard/Movies.
To move back a folder, use two dots (..). For example, if I’m in /Users/richard and type cd .. I will then be in /Users.


The term shell can refer to any interface to a computer (in the sense that the shell is the outermost part, the part people interact with.) But more commonly, shell is another way of saying “command line interface” or
As long as you’re going to start using Terminal regularly, you might as well make it at home. You can drag the Terminal to your Dock for easy access. Also, you might want to change the look of Terminal by going to Window Settings in the Terminal menu. Switch the drop down menu to Color, then change the color to your liking. I personally like White on Black with a little transparency, but you can do whatever you like.
Unix is a computer operating system that was developed in the 60’s and 70’s at AT&T’s Bell Labs. It was designed as a robust, multi-user, multi-tasking operating system and has historically been popular on large mainframe systems at universities and governments.
I’m excited to launch FreeMacUnix, a website all about using Unix on a Mac. You may have noticed the Terminal application in your Utilities folder and wondered what it was. Through Terminal you can access the powerful