Introduction
Linux is a widely used operating system, but what is the language it follows? How do we pass arguments? How do we give commands? Let us find all these answers through this blog.

What Is A Command Line Interface?
Command-line interfaces are also called CLIs. CLIs take input commands that are entered by the keyboard and run them.
The command line interface in Linux systems is bash. It stands for Bourne again shell. The features of this shell include the characteristics of sh (the original Bourne shell), csh (the C shell), and ksh (the Korn shell).
Commands in Linux
Let us study each command one by one.
echo Command
As the name signifies, it echoes or returns the input we give.
Syntax
echo text
Output

Note that If the parts in the text are separated by white space, it is read as a separate argument. The white space is removed.
type Command
Type command is used to determine whether the given command is an external one or a built-in command.
Syntax
type cd
Output

touch Command
The touch command is used to make new files.
Syntax
touch file_name
Output

cat Command
We use cat to create a file, display the file content, copy the content, etc.
Syntax
cat file_name
Output

rm Command
The rm command removes a file.
Syntax
rm file_name
Output

cp Command
The cp command has the task of copying.
Syntax
cp old file new file
Output

mv Command
This command moves a file from one location to other.
Syntax
mv file_name path of the directory
Output

tac Command
cat, when reversed, is called tac. It shows the content of the file in a reversed manner.
Syntax
tac file_name
Output

date Command
Use the date command to see the date, time, time zone, and more.
Syntax
date
Output

sleep Command
This command gives rest to the terminal for a few seconds.
Syntax
Sleep time
Output

time Command
Time command tells the time to run a command.
Syntax
time
Output

df Command
If you need to see the disk space used in the file system, use df.
Syntax
df
Output

exit Command
Exit command takes you out of the shell
Syntax
exit
Output

To exit the terminal, you must press the ENTER key on your keyboard.
clear Command
Clear command empties the terminal
Syntax
clear
Output

Press the ENTER key on the keyboard to clear the terminal screen.