Intro to Programming: How to Use the Command Line (Part 1)

While it can look scary at first, the command line is a very important tool to be familiar with.
By Ciprian Stratulat • Updated on May 2, 2023
blog image

 

Before you install Python, it is important to learn the basics of how to use the command line. This article is part of our Intro to Programming series.

 

The command line (also known as the Terminal, or Command Prompt) refers to a type of program that comes pre-installed with Windows, Linux, and Mac computers and allows you to execute commands, run programs and navigate through the folders on your computer. In this article series, I will often use the term terminal or command line because I use a Mac, but know that they refer to the same thing.

The command line is often featured in movies. You may have seen it particularly when hackers get involved and are doing something exciting, like breaking into government databases. Which is not to say that you should break into government databases!

For a little bit of history, before computers had a mouse or a touch pad, they also didn't really have advanced graphical interfaces with windows and buttons that you could click on, so the command line was really the only way to interact with them. You typically did this by typing at a physical terminal (which mostly consisted of a monitor and a keyboard) and whatever commands you typed at that terminal were then sent to the mainframe, which executed the commands and sent back a result.

A woman in the 1960s sits at the computer terminal in front of the mainframe while analyzing data with her male colleaguesImage source: https://www.timetoast.com/timelines/the-history-of-ecommerce 

The mainframe was the actual computer and back then it occupied a whole room and sometimes the terminal and the mainframe were not even in the same building. Of course, technology has evolved, but all operating systems to this day still have a built-in command line and even though today we have advanced user interfaces, the command line remains a powerful and faster way to interact with computers. In some cases, it is the best or even only way to achieve certain tasks, so it is worth getting comfortable with it.

Advanced ways of using the command line are beyond the scope of this article series, but I will cover the basics. On Mac computers, the command line is called a Terminal and you can find it by searching for the terminal app. On Windows computers, the command line is called the Command Prompt, and again you can find it by searching for it on your computer. Linux users prefer the term Command Line.

Note for Windows Users: The Windows command prompt is not quite as powerful (in my opinion) or as easy to use as a Linux or Mac Terminal. For this reason, I strongly suggest that you install the Anaconda Distribution, which "is a free, easy-to-install package manager, environment manager and Python distribution with a collection of 1,000+ open source packages with free community support." The Anaconda Distribution comes with the Anaconda Prompt, which is similar to a Linux or Mac Terminal. You can use that instead of the default Windows Command Prompt.

Whether you run the Terminal on a Mac, or the Anaconda Prompt, or even the Command Prompt on a Windows computer, a new window should open up and it should look more or less like this: essentially some text inside a plain box.

A snapshot of the Command Prompt in Python

Image Source: Screenshot, Edlitera

Shown above, is a screenshot of my Terminal window. Depending on your operating system version and other configurations, the font, text and colors may be different, but the functionality will be the same. The key difference between the command line and other software you may have used is that it has no buttons, so the only way to interact with it is by typing commands and executing them.

For a mental model of the command line, think of it as a type of messaging app: you type some message and the computer types back some replies. You can't go above and change the messages you typed, but you can always type new messages. Also, unlike most messaging apps out there, you generally can't "type" while the computer is "typing." You need to wait for the command to finish running before you can run another command.

The command line remains a powerful and, often times, faster way to interact with computers.

 

It's Ugly and I Don't Like It. Why should I Use the Command Line?

I must agree, the aesthetics of the command line have not changed much since the 20th century. However, that's also part of its beauty. Think about how much time you've spent getting yourself familiar with some graphical interface or another. Every application's buttons look slightly different, or are located in a slightly different location. The menu names are different, etc. The command line is simple because it's all text. If you can type on a keyboard, you can use a command line.

So despite the fact that it may not look welcoming, once you get a bit familiar with it, you will discover that the command line is actually easier and faster to use than some user interfaces.

For example, in the screenshot above, you can see that all I need to do in order to get the current time and date is type the command  date and once I hit Enter I see the current date and time printed on the next line.

Another reason for learning to use the command line is the fact that sometimes you just can't avoid using it. The command line allows you to interact with an operating system (OS X, Windows, Linux) in a much more intimate and efficient way, without graphical abstraction layers interfering. Also, a significant number of software that you will interact with as a programmer simply does not have a user interface because it doesn't need to. Web servers like Jupyter Notebook, daemon's of all sorts, command line utilities, etc., don't need a user interface and use the command line. 

 

Article continues below

 

Anatomy of the Command Line

In the diagram below, I explain the various parts of the command line.

A diagram of the command line in Python

Image Source: Screenshot, Edlitera

How to Use the Command Line Prompt

The command line prompt is the text that gets prepended to every new line. In my case, it reads (base) ciprian ~$. This is highly customizable and it serves the purpose of providing useful information to the user.

In my case, my command line informs me that I'm in the base environment (in the next article I'll talk about programming environments), that the user I'm logged in as is ciprian (that's me), and that I'm in the ~ folder (more on this in just a bit). The $ at the end is just an indicator that this is where my command line prompt ends and this is where I can begin typing my commands.

Depending on your setup, you will likely see something very different on your computer. Customizing your command line prompt is a more advanced topic and I won't cover it here, but just be aware that it's something you can do.

 

What is the Command to Run?

The command to run is always some sort of text. In the screenshot above, I'm interested in getting the current date, so the command I need to run is simply the word date. There are tons of commands you can run on the command line, but don't be overwhelmed by this. You can always learn new commands as you go. As you learn to program faster, it will become second nature. In the next article, we will cover the basic commands, to get you started.

 

How to Read the Computer's Response

This is simply what the computer prints as the result of running the command. Some commands print a lot of text on the screen, some print very little or none at all. It really depends on the command. You will notice that while the computer is running your command, you don't have access to the command prompt. If your computer is taking too long to respond, there are ways to force quit the execution of the command - we will cover this in the next article.

 

Now You Know What the Command Line is, What's Next? 

The mechanics of the command line, as I explained above, are pretty simple: you type your command, hit enter, wait for a bit (however long it takes the computer to run the command), and then observe the result. In my next article, I will go over some basic usage of the command line, which will come very helpful as we begin writing and running Python programs.

 

Ciprian Stratulat

CTO | Software Engineer

Ciprian Stratulat

Ciprian is a software engineer and the CTO of Edlitera. As an instructor, Ciprian is a big believer in first building an intuition about a new topic, and then mastering it through guided deliberate practice.

Before Edlitera, Ciprian worked as a Software Engineer in finance, biotech, genomics and e-book publishing. Ciprian holds a degree in Computer Science from Harvard University.