mirror of
https://github.com/techarkit/shell-scripting-tutorial.git
synced 2025-07-25 01:28:51 +00:00
8 lines
140 B
Bash
8 lines
140 B
Bash
#!/bin/bash
|
|
#Website: https://arkit.co.in
|
|
if ! [[ $1 -lt 20 || $2 -ge 30 ]]; then
|
|
echo "Statement is True"
|
|
else
|
|
echo "Statment is False"
|
|
fi
|