diff --git a/primul-script-bash.sh b/primul-script-bash.sh new file mode 100755 index 0000000..0436470 --- /dev/null +++ b/primul-script-bash.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +echo "Rulăm un test..." + +NUMAR=5 + +if [ $NUMAR -ge 3 ]; then + echo "Numărul $NUMAR este mai mare sau egal cu 3." +else + echo "Numărul este mai mic decât 3." +fi + +echo "Test finalizat!"