#bash
Read more stories on Hashnode
Articles with this tag
Basic Commands Displaying Output: Echo a calculation result: num1=4 num2=5 echo $((num1+num2)) # Prints: 9 echo 'end' # Prints:...