DEV Community

Alan Constantino
Alan Constantino

Posted on • Updated on • Originally published at blog.alanconstantino.com

Getting Started with the Terminal

If you've found this article useful, consider donating.

An updated version of this article can be found on my blog.

So, you want to learn how to use the Terminal. Great! As a developer, sooner or later, you’ll want to learn how to use the Terminal. Not only is this a handy tool to have under your belt, but it will also boost your productivity.

Before Starting

Before actually getting started learning commands, it’s useful to think of the directories (folders) as a hierarchical tree.

The root directory is “/” and inside of “/”, you have the following folders: bin, tmp, usr, and src.

In the illustration above, you can see that the first directory, often referred to as the “root” directory, is named “/”. That directory (folder) contains other directories such as bin, tmp, usr, and src. Those directories can have other directories or files and those child directories can have even more directories or files and so on.

Of course, the illustration above is just an example, it doesn’t actually reflect the folders and files that reside in your computer.

Now, what the terminal allows us to do is to traverse and manage the directory tree. This is why the terminal is so powerful, it allows us to quickly sift through folders and files in an efficient manner as well as being able to create, delete, or update a file or directory.

Opening Your Terminal

To open your terminal, use the following shortcut: “⌘ + Spacebar.” Now type in “Terminal” and then press the “Enter” key.

Now, you should have something on your screen that looks like

For the most part, you should be staring at a black window with white text and a cursor itching for your next command.

Important Note

It’s important to note that every directory on Mac/UNIX/LINUX has two hidden directories, namely “.” and “..”

The “.” means the current directory and “..” means previous or parent directory. Keep this in mind, it will be useful later.

Commands

Now that we have a terminal window in front of us, it’s finally time to get to the commands.

The first command you should type into the terminal should be the pwd (print working directory) command.

pwd — print working directory

pwd
Enter fullscreen mode Exit fullscreen mode

This command prints the current directory you’re in onto the terminal.

Currently in the “/Users/alanconstantino” directory.

Congratulations, you just ran your first command on the terminal!

This command is useful for knowing where you currently are within the directory tree.

The next command we should try is ls or list.

ls — list

ls
Enter fullscreen mode Exit fullscreen mode

This command lists all the directories and files from your current directory.

By typing ls, we can see all of the files and directories within the current directory.

Cool, now we can list all of the files and directories from our current directory.

But what if we want to list all the contents from another directory?

Simple, just type the following command:

ls [directory name]
Enter fullscreen mode Exit fullscreen mode

We list all the files and folders inside of the “Desktop” directory.

Now we can list files and folders from our current directory or other directories.

But what if we want to change our current directory? That’s where the cd or change directory command comes into play.

cd — change directory

cd [directory name]
Enter fullscreen mode Exit fullscreen mode

The cd command allows you to change your directory to another directory. This is how you’ll actually traverse the directory tree.

Example:

cd /
Enter fullscreen mode Exit fullscreen mode

The command above changes your current working directory to your root directory.

“cd /” changes your current directory to your root directory.

Now, how do we back out of a directory or go to the previous/parent directory?

We have to use the following command:

cd ..
Enter fullscreen mode Exit fullscreen mode

As I mentioned earlier, the “..” means the parent directory or previous directory. Effectively, the command above is telling the terminal “Hey, take me back to the previous directory.”

Changed directory from “/Users/alanconstantino/Desktop” to “/Users/alanconstantino.”

Also, if you use this command in the root directory, nothing happens because there isn’t a previous or parent directory to go back to, hence the name root.

But what if you want to go back more than one directory?

No problem, the following command is just what you need.

cd ../../
Enter fullscreen mode Exit fullscreen mode

The command above tells the terminal “Hey, I want to go back two directories and make it snappy.” Okay, maybe not so much the snappy part, but it does take you back two directories.

Essentially, every “../” you add takes you back one directory.

So the following example will take you back three directories:

cd ../../../
Enter fullscreen mode Exit fullscreen mode

Now that we know how to traverse the directory tree and list its contents, we should move onto more useful commands.

Before that though, we should probably clear our terminal screen because by now it may be a little tough to read.

clear

By typing in the following command into the terminal, you are able to clear what’s on screen.

clear
Enter fullscreen mode Exit fullscreen mode

Clearing the terminal.

Now that our screen has been cleared, we can move onto more useful commands, like the mv (move) command.

mv — move

mv [source] [destination]
Enter fullscreen mode Exit fullscreen mode

The mv (move) command simply moves a file or directory to another place.

From the skeleton command above, the “source” is what you want to move while the “destination” is where you want the file to end up.

For example, if I have something like the following:

one
├── myfile.txt
└── two
Enter fullscreen mode Exit fullscreen mode

Where “one” and “two” are folders, and I want to move, “myfile.txt” to folder “two” I would simply do the following assuming I was already in the “one” folder location:

mv myfile.txt two
Enter fullscreen mode Exit fullscreen mode

We moved “myfile.txt” to the folder “two.”

Of course, you could be anywhere in the directory tree to execute this command — and pretty much any command for that matter — but you just have to make sure you enter the full location path of the file you want to move and its destination.

For example, in the following screenshot, I’m in my root directory but I’m still able to move a file from my Desktop to the “two” folder from the previous example:

We moved “anotherfile.txt” to the “two” folder while in the root directory.

Now, what if we wanted to move a file or folder from wherever it is to our current location in the directory tree.

Well, remember earlier how I talked about the “.” being our current directory, we would have to use “.”

For example:

mv /somelocation/myfile.txt .
Enter fullscreen mode Exit fullscreen mode

The example above moves “myfile.txt” to wherever we currently are in the directory tree.

Another command that’s similar to mv (move) is cp (copy).

cp — copy

cp [source] [destination]
Enter fullscreen mode Exit fullscreen mode

The copy command is just like the move command except instead of moving a file or folder, it makes a copy of it leaving the original file unharmed.

To copy a file you would do the following:

cp myfile.txt /one
Enter fullscreen mode Exit fullscreen mode

We copied “myfile.txt” to the “one” folder.

Now to copy a directory you have to add the “-r” option like so:

cp -r one two
Enter fullscreen mode Exit fullscreen mode

We copy the contents of the “one” directory into the “two” directory.

All the “-r” option means is that it tells the terminal to copy the files recursively which is a fancy way of saying everything.

So by using the “-r” option, we tell the terminal “Please copy all the contents, including folders and files to our destination.”

It’s also important to keep in mind that most, if not all, commands can have options and there are different options for every command. You can also have more than one option.

Now, what if we wanted to open a file or folder from our terminal?

We would need to utilize the open command.

open

open [file/folder]
Enter fullscreen mode Exit fullscreen mode

This command lets us open a file with its associated program.

For example, if we have a “.txt” file and we do the following command:

open myfile.txt
Enter fullscreen mode Exit fullscreen mode

We open a file named “myfile.txt.”

this opens “myfile.txt” with your default text editor like so:

Here’s another example.

If you do the following command, it will open the finder window in the root directory.

open /
Enter fullscreen mode Exit fullscreen mode

We opened a new finder window at the root directory.

The finder window will look something like the following:

A finder window showing the contents of the root directory.

It opens the finder window because that’s the program that is associated with the file or in this case the folder you’re trying to open.

So if we did the following command:

open .
Enter fullscreen mode Exit fullscreen mode

it would open a new finder window from our current location because remember, the “.” means our current directory.

Now, let’s move onto actually making a directory from the terminal.

mkdir — make directory

mkdir [directory name]
Enter fullscreen mode Exit fullscreen mode

To make a directory, you simply type the command above and give it a name like so:

We made a directory named “mydirectory.”

We can also create multiple directories like so:

We created two directories, one named “newdirectory” and another named “anotherdirectory.”

What if we wanted to make a file instead of a directory?

We would use the touch command.

touch

touch [file name]
Enter fullscreen mode Exit fullscreen mode

This command simply creates an empty file.

For example, if we do the following:

touch myfile.txt
Enter fullscreen mode Exit fullscreen mode

This creates a file named “myfile.txt” in our current directory.

We create a file named “myfile.txt.”

And similar to mkdir, you can create multiple files in one command like so:

We create “myfile.txt” in the current directory and “anotherone.txt” in the previous directory.

In the screenshot above, we create two files, “myfile.txt” and “anotherone.txt.”

The “myfile.txt” file is created in the current directory while the “anotherone.txt” file is created in the previous directory.

Let’s move on to deleting a directory.

rmdir — remove directory

rmdir [directory name]
Enter fullscreen mode Exit fullscreen mode

The rmdir command is self-explanatory, it just deletes a directory.

We are deleting an empty directory named “emptydir.”

However, it’s important to note that when using this command, you can only remove an empty directory.

If your directory is not empty and you try to use the rmdir command, you’ll get something like the following:

We failed at removing the directory “folder” because it’s not empty.

Now how do we remove the contents of a directory you may be asking?

We would have to use the rm (remove) command.

rm — remove

rm [file name]
Enter fullscreen mode Exit fullscreen mode

This command is probably the most powerful and yet the most dangerous one on this list which is why I saved it for last.

Once you use this command and delete something, it’s gone forever.

It doesn’t get put into your Trash for you to empty out later. No! Once you type in this command and hit enter, poof… it’s gone… forever…

This also applies to rmdir, once you remove a directory, it’s gone forever.

But unlike rmdir, the rm command has the ability to remove both a directory as well as a file.

With this in mind, let’s see it in action.

To remove a file, simply do the following:

rm myfile.txt
Enter fullscreen mode Exit fullscreen mode

We removed a file named “myfile.txt.”

And just like some of the previous commands, we can delete multiple things at once by using the following format:

rm [file1] [file2] [etc]
Enter fullscreen mode Exit fullscreen mode

We delete “afile.txt” and “anotherone.txt”

In the example above, we delete “afile.txt” from the current directory and subsequently delete “anotherone.txt” from the previous or parent directory.

If we wanted to delete only certain files that end in specific extensions (i.e. .txt, .png, .exe, etc) we would use the asterisk or “*” symbol. This symbol is often referred to as a wildcard.

For example, if we were in a directory and we only wanted to delete .txt files, we would do the following:

rm *.txt
Enter fullscreen mode Exit fullscreen mode

We delete various .txt files.

As you can see, we deleted all the files that end with the “.txt” extension. If we had other files such as .png, .gif, etc, those files would be unscathed by the rm command.

So by using the “*” symbol we effectively tell the terminal to disregard the name of the file and only look at the extension of the file.

Now let’s get into the danger zone.

Earlier I said that most if not all commands have something called options. These options are added right after the command like so:

[command] [options] [other paramters]
Enter fullscreen mode Exit fullscreen mode

Well, the rm command has two options that I’m going to show you which are dangerous if used without precaution and quite lethal in combination.

rm -r

The first is the “-r” option. As you may recall, I said that the “-r” option means do it recursively, which is just another way of saying all or targeting everything.

If you do the following command:

rm -r [directory]
Enter fullscreen mode Exit fullscreen mode

it will delete everything inside of a directory including the folder itself.

So if I have the following directory:

newfolder
├── folder1
│      └── text1.txt
├── folder2
│      └── text2.txt
└── folder3
         └── text3.txt
Enter fullscreen mode Exit fullscreen mode

and then I input the following command:

rm -r newfolder
Enter fullscreen mode Exit fullscreen mode

It will delete everything within the “newfolder” directory as well as the folder itself.

We delete all of the contents of the “newfolder” directory including the folder itself.

As a side note, the ‘tree’ command isn’t available by default on Mac, you have to download and install it seperately.

Now we move onto the other option, “-f.”

rm -f

rm -f [file/directory]
Enter fullscreen mode Exit fullscreen mode

Sometimes, when you use the rm command, you may get a prompt. This prompt may just be something like “Are you sure you want to delete the following file or directory?”

By using this option, you avoid having the prompt show up in the first place.

Essentially, this just tells the terminal, “Delete the following file/directory and don’t give me a prompt.”

Now we move onto the most lethal combination, “-rf.”

rm -rf

rm -rf [directory]
Enter fullscreen mode Exit fullscreen mode

When you combine both the “r” and the “f” options, you’re telling the terminal “Delete all of the contents of the directory and don’t show me a prompt, capeesh.”

As you can probably guess, this is quite dangerous.

No need to fret though, as long as you’re cautious and don’t use this command on let’s say, you’re root directory, you should — for the most part — be fine.

So now that we know what the “r” and “f” options do, let’s run through an example.

Here I have a directory which looks something like this:

anotherfolder
└── myfolder
        ├── folder1
        │      └── file1.txt
        ├── folder2
        │      └── file2.txt
        ├── folder3
        │      └── file3.txt
        └── folder4
                 └── file4.txt
Enter fullscreen mode Exit fullscreen mode

Now if I run the following command (assuming I’m already at the “anotherfolder” location):

rm -rf myfolder
Enter fullscreen mode Exit fullscreen mode

It should delete all the contents inside the “myfolder” directory including the folder itself and I shouldn’t see any prompts.

All right, let’s give it a shot.

We remove all the contents of “myfolder” including the folder itself.

Sure enough, it worked.

Now let’s recap what we learned.

Recap

It’s useful to think of directories as a hierarchical tree with the topmost directory being the root directory.

The “.” means current directory while “..” means previous or parent directory.

We also took a look at the following commands:

  • pwd — prints the current working directory
pwd
Enter fullscreen mode Exit fullscreen mode
  • ls — lists all the contents of the current directory
ls
Enter fullscreen mode Exit fullscreen mode
  • cd — changes directory
cd [directory name]
Enter fullscreen mode Exit fullscreen mode
  • clear — clears the terminal screen
clear
Enter fullscreen mode Exit fullscreen mode
  • mv — moves files or folders from one place to another
mv [source] [destination]
Enter fullscreen mode Exit fullscreen mode
  • cp — copies files or folders from one place to another
cp [source] [destination]
Enter fullscreen mode Exit fullscreen mode
  • open — opens the file or folder with the associated program
open [file/directory]
Enter fullscreen mode Exit fullscreen mode
  • mkdir — makes a new empty directory
mkdir [directory name]
Enter fullscreen mode Exit fullscreen mode
  • touch — creates a new empty file with the name of your choice
touch [file name]
Enter fullscreen mode Exit fullscreen mode
  • rmdir — removes an empty directory
rmdir [empty directory]
Enter fullscreen mode Exit fullscreen mode
  • rm — removes a file
rm [file name]
Enter fullscreen mode Exit fullscreen mode
  • rm -rf — removes the folder and its contents without showing any prompts
rm -rf [directory name]
Enter fullscreen mode Exit fullscreen mode

And this is only scratching the surface of the terminal.

There are many more useful commands but these are just the basics to get you up and running.

Top comments (0)