Bash/Shell scripting - Understanding the basic concepts of Shell scripting

Date - Jan 02, 2020
Avatar

Bash is the shell, or command language interpreter, for Linux operating system.

A shell is a command-line interpreter and typical operations performed by shell scripts includes file manipulation, program execution, and printing text.

Readmore...

Bash/Shell scripting - Performing Arithmetic operations using shell scripts

Date - Jan 08, 2020
Avatar

Arithmetic operators are used to perform normal arithmetics/mathematical operations. As like other programs it performs basic mathematic functions. There are 7 arithmetic operators.

Readmore...

Bash/Shell scripting - Performing Relational operations using shell scripts

Date - Jan 15, 2020
Avatar

A Relational operators are those which defines the relation between two operands. They give either true or false depending upon the relation between the operands.

Readmore...

Bash/Shell scripting - Performing Logical operations using shell scripts

Date - Jan 22, 2020
Avatar

Logical Operators are also known as boolean operators. These are used to perform logical operations. It will return two values that is either the output will be true or false. We can make decision regarding an process to proceed.

Readmore...

Bash/Shell scripting - Performing Bitwise operations using shell scripts

Date - Jan 29, 2020
Avatar

A bitwise operator is an operator which used to perform bitwise operations on bit patterns. It converts the operands into binary data and then perform necessary operations bit by bit.

Readmore...