...

/

Other Commonly Used Bash Commands

Other Commonly Used Bash Commands

Get to learn some useful and important bash commands that are necessary in order to interact with your machine efficiently and get your day-to-day tasks done.

We'll cover the following...

1. echo

Definition:

echo is the built-in command in bash and C-shells that simply prints its arguments on the console or terminal.

Syntax:

echo [option(s)] [string(s)]

Options:

Options Meanings
-n Do not output a trailing newline.
-e Enable interpretation of backslash escape
...