Answers for "bash linux scripting laguage"

0

bash linux scripting laguage

#!/bin/bash

num_a=100
num_b=200

if [ $num_a -lt $num_b ]; then
    echo "$num_a is less than $num_b!"
fi
Posted by: Guest on March-21-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language