What Is CLI?

CLI is a powerful program, but its use CLI hasn’t always been well-received. Beginners are reluctant to use it, thinking that it is only for advanced users. But, that is not true.

In this article, you will learn everything you need to know about CLI.

Download Glossary For Web Beginners

CLI stands for command line interface. It is a program that allows users to type text commands instructing the computer to do specific tasks.

The Roots of CLI

In the 1960s, CLI was used intensively.

Back then, people had only a keyboard as an input device and the computer screen could only display text information. The operating systems like MS-DOS used the CLI as the standard user interface.

Windows Command Line Interface

Basically, users had to type a command on the CLI to perform tasks, as this was the only way to communicate with the computer.

After typing a command, the result users got would be either text information or specific action performed by the computer. That being said, typing the right command is the key.

If users type the wrong command, chances are they’ll end up deleting the wrong files or accidentally closing the program before saving their work. This is what people consider as the main drawback of using CLI.

Then, after years of only using a keyboard and risking to misuse the command line, the mouse was invented.

The invention of a mouse marked beginning of the point-and-click method as a new way to interact with the computer.

This method is much safer for average users, thus drove them away from CLI. But, later on, we will discuss that using CLI is better. Stay with us.

Apart from that, operating systems started to develop an attractive way of computing, using GUI (Graphical User Interaction). GUI itself was phenomenal because of the use of buttons and menus to represent specific commands. This approach has been proven to be very intuitive.

Today, GUI has become a common way of computing. However, most operating systems still offer a combination of CLI and GUI. For example, Mac users can either type “cal” in Terminal or click on a Calendar application to get the same results.

Displaying Calendar in TerminalShell The Foundation Behind CLI

If we dive from CLI into the deeper part of an operating system, we will find the shell.

Shell is a user interface responsible for processing all commands typed on CLI. It reads and interprets the commands and instructs the operating system to perform tasks as requested.

In other words, a shell is a user interface that manages CLI and acts as the man-in-the-middle, connecting users with the operating system.

In practice, there are many things that shell can process, such as:

  • Working with files and directories
  • Opening and closing a program
  • Managing computer processes
  • Performing repetitive tasks

Among many types of shell, the most popular ones are Windows shell (for Windows) and bash (for Linux and MacOS).

Windows Shell

The default shell in Windows is CMD.exe or the Command Prompt. In fact, Microsoft has used the Command Prompt since the old days, where MS-DOS was the main operating system.

To open the Command Prompt, you can click Start -> All Programs -> Accessories -> Command Prompt. Or, you can simply press Windows+R, then type CMD, and press enter.

Depending on what you need, type in either a single command or a combination. You can also type commands that run within a sequence (one command is executed after another).

The Command Prompt is so robust that it can manage many things within the Windows operating system:

  • Changing directories, listing directories, content, etc
  • Handling networking like displaying IP networks settings
  • Managing files like renaming, moving, etc
  • Managing media like formatting and renaming volumes

Now, let’s learn how to use some syntax in the command prompt:

  • Changing directory
    To navigate to a specific directory or folder in the command prompt, use CD [path]. Make sure you add space before the intended path. For example:

     

    CD C:\Program Files
  • Renaming a file
    To rename a file within a specific folder, use REN [drive:][path] [source] [target].If you mention the location, that means the renamed file will be saved in the same folder. For example:

     

    REN d:untitled.txt untitled1.txt
  • Deleting a file
    To delete a file in the command prompt use DEL [filename]. If you want to add the options like force deletion, you can add it before the file name. For example:

     

    DEL /F untitled.txt
  • Renaming a Volume Disk
    To edit the name of a specific volume disk, use LABEL [drive:][new volume name]. Keep in mind that you can use up to 32 characters on  NTFS volume and 11 on FAT volume. For example:

     

    D:\ > LABEL d:MyData

Bash

Bash stands for Bourne Again SHell and was developed by the Free Software Foundation.

Bash is a type of shell used in MacOS and many Linux distributions. However, you can also install bash Linux on Windows 10.

In Linux, Bash shell is one of many shells the Linux users can use. The other types are Tchs shell, Ksh shell, and Zsh shell.

In most Linux distributions, the shell is located under the Utilities menu. If you use Gnome desktop, the name is Terminal, but if you use KDE, the name is Konsole.

Meanwhile, in MacOS, the program is Terminal.app. To run this program, go to Application -> Utilities -> Terminal. Or, you can simply type terminal using Spotlight search.

Once the terminal’s opened, you can start typing a command. Basically, most commands consist of: the command itself, the argument, and the option.

While the command contains the instruction we want to perform, the argument tells where the command should operate and the option requests the modification of the output.

Now it’s time to learn how to use the shell.

To begin with, you need to know the syntax to deal with the shell. This is also known as shell scripting – ways of using the script in CLI to run certain tasks.

While there are many commands you can use with CLI, they all fall into two categories:

  • The commands that handle the processes
  • The commands that handle the files

To understand the command syntax in MacOS, let’s learn from these examples:

  • List all files in a folder
    To know what files under a specific folder, use ls.
    The default command will exclude the hidden files. To show all files, you can add -a. For example:

     

    ls -a
    Listing All Files in a Folder Using CLI

  • Change directory
    To move to a specific directory, use cd destination. For example:

     

    cd ~/Desktop
    Change Directory Using MacOS Terminal

  • Rename file
    To rename a file within a specific folder, use mv source destination. Keep in mind, that you need to make sure the name of the file and the extension. For example:

     

    mv ~/Desktop/untitled.rtf ~/Desktop/untitled1.rtf
    Renaming a File Using MacOS Terminal

  • Delete a file
    To delete a file in the specific folder use rm filename. To avoid deleting the wrong file,  make sure you move to the right folder destination first. For example:
    rm untitled.rtf
Deleting a File Using MacOS Terminal

Again, typing the right command is important. That means you should pay attention to each character you use, including space. Not only that, make sure you type the correct case.

If for certain reasons you want to stop the ongoing process on the Command Prompt or Bash, simply hit Control+C.

Suggested Reading

Check out our guide on bash scripting.

Why Would You Use CLI over GUI

As previously mentioned, the GUI was developed within the operating system as soon as the mouse became a new input device to operate the computer.

We should admit that GUI is visually attractive and easily understood. But, for some tasks which are vital, CLI is way more powerful.

Here, we would like to pick some points why you would use CLI over GUI. However, we leave it to you to choose depending on your type of work.

  1. Less Resource
    It is not a secret that the text-based program needs very little resources of your computer. This means that with CLI you can do similar tasks with minimum resources.
  2. High Precision
    You can use a specific command to target specific destinations with ease. As long as you don’t type the wrong command, it will work like a charm. Once you learn the basics, writing syntax is not as hard as you might think.
  3. Repetitive Tasks Friendly
    GUI has developed well over the years. But, the operating system may not give you all the menus and buttons to perform all tasks. One of the reasons is safety. This leaves you overwhelmed if you have to do repetitive tasks. For example, when you have to handle hundreds of files within a folder, CLI enables you to use a single command to do automate the repetition easily.
  4. Powerful
    Most operating systems today prevent you from messing up the system’s core process. Windows has system protection and MacOS has SIP (System Integrity Protection). You won’t be able to perform certain tasks which are system protected. However, with CLI, you will have full control over your system.

For instance, consider the task of migrating a vast amount of content from one WordPress site to another. Web developers often begin by preparing the content, ensuring it’s organized and formatted correctly. Once the content is set, rather than manually transferring each article or page, developers can turn to tools to streamline this process.

By using the CLI method, such as the WordPress Command Line Interface (WP-CLI), developers have a direct way to manage large-scale content migrations. While the WordPress dashboard might offer plugins and manual methods to transfer content, WP-CLI provides a more efficient and streamlined approach, especially when handling substantial amounts of data.

Hostinger web hosting banner

Conclusion

Despite a long debate that CLI is only for the experts, you have now learned it is for average users as well.

The fact that most operating system still provides CLI along with GUI proves that CLI is crucial. Also, using CLI gives more positive points than GUI because:

  • It needs fewer resources
  • It ensures high precision
  • It handles repetitive task easily
  • It is powerful

Now, let’s get the job done using CLI!

Author
The author

Domantas G.

Domantas leads the content and SEO teams forward with fresh ideas and out of the box approaches. Armed with extensive SEO and marketing knowledge, he aims to spread the word of Hostinger to every corner of the world. During his free time, Domantas likes to hone his web development skills and travel to exotic places.