InterviewSolution
Saved Bookmarks
| 1. |
Which Builtin Linux Command Performs Arithmetic Operation Of Integers In Bash? |
|
Answer» The ‘LET’ command that performs arithmetic OPERATION of INTEGER in bash SHELL. #! /bin/bash ... ... let c=a+b ... ... The ‘let’ command that performs arithmetic operation of integer in bash shell. #! /bin/bash ... ... let c=a+b ... ... |
|