Unix Basic Operators
Unix Basic Operators
There are various operators supported by each shell. Our tutorial is based on default shell Bourne so
we are going to cover all the important Bourne Shell operators in the tutorial.
Arithmetic Operators.
Relational Operators.
Boolean Operators.
String Operators.
The Bourne shell didn't originally have any mechanism to perform simple arithmetic but it uses
external programs, either awk or the must simpler program expr.
#!/bin/sh
val=`expr 2 + 2`
echo "Total value : $val"
Total value : 4
There must be spaces between operators and expressions for example 2+2 is not correct,
where as it should be written as 2 + 2.
Arithmetic Operators
There are following arithmetic operators supported by Bourne Shell.
Show Examples
* Multiplication - Multiplies values on either side `expr a\*b` will give 200
of the operator
/ Division - Divides left hand operand by right `expr b/a` will give 2
hand operand
% Modulus - Divides left hand operand by right `expr ba` will give 0
hand operand and returns remainder
= Assignment - Assign right operand in left a=$b would assign value of b into
operand a
It is very important to note here that all the conditional expressions would be put inside square
braces with one spaces around them, for example [ a == b ] is correct where as [a == b] is incorrect.
Relational Operators:
Bourne Shell supports following relational operators which are specific to numeric values. These
operators would not work for string values unless their value is numeric.
For example, following operators would work to check a relation between 10 and 20 as well as in
between "10" and "20" but not in between "ten" and "twenty".
Show Examples
-eq Checks if the value of two operands are equal [ a − eqb ] is not true.
or not, if yes then condition becomes true.
-ne Checks if the value of two operands are equal [ a − neb ] is true.
or not, if values are not equal then condition
becomes true.
-gt Checks if the value of left operand is greater [ a − gtb ] is not true.
than the value of right operand, if yes then
condition becomes true.
-lt Checks if the value of left operand is less than [ a − ltb ] is true.
the value of right operand, if yes then
condition becomes true.
-ge Checks if the value of left operand is greater [ a − geb ] is not true.
than or equal to the value of right operand, if
yes then condition becomes true.
-le Checks if the value of left operand is less than [ a − leb ] is true.
or equal to the value of right operand, if yes
then condition becomes true.
It is very important to note here that all the conditional expressions would be put inside square
braces with one spaces around them, for example [ a <= b ] is correct where as [a <= b] is incorrect.
Boolean Operators
There are following boolean operators supported by Bourne Shell.
Show Examples
Operator Description Example
-o This is logical OR. If one of the operands is true [ a − lt20 − ob -gt 100 ] is true.
then condition would be true.
-a This is logical AND. If both the operands are [ a − lt20 − ab -gt 100 ] is false.
true then condition would be true otherwise it
would be false.
String Operators
There are following string operators supported by Bourne Shell.
Show Examples
Assume a variable file holds an existing file name "test" whose size is 100 bytes and has read,
write and execute permission on −
Show Examples
-b file Checks if file is a block special file if yes then [ -b $file ] is false.
condition becomes true.
-d file Check if file is a directory if yes then condition [ -d $file ] is not true.
becomes true.
-k file Checks if file has its sticky bit set if yes then [ -k $file ] is false.
condition becomes true.
-u file Checks if file has its set user id SUID bit set if [ -u $file ] is false.
yes then condition becomes true.
-s file Check if file has size greater than 0 if yes then [ -s $file ] is true.
condition becomes true.
C Shell Operators
Following link would give your brief idea on C Shell Operators.
C Shell Operators