{ print “—————————————————————————” print “This script will do arithmetic operation (+, /, -, *) between two values ” print “command is num1 op num2 where op is the arithmetic command” print ” eg:- 2 * 3″ print “—————————————————————————” no1 = $1 no2 = $3 op=$2 if ( op == “*” ) ans = no1 *ContinueContinue reading “[Linux][awk]Implementation of arithmetic operations using awk”