May 2017
Beginner
552 pages
28h 47m
English
#!/bin/bash
no1=4;
no2=5;
let result=no1+no2
echo $result
Other uses of let command are as follows:
$ let no1++
$ let no1--
let no+=6
let no-=6
These are equal to let no=no+6 and let no=no-6, respectively.
The [] operator is used in the ...