14 lines
205 B
Bash
Executable File
14 lines
205 B
Bash
Executable File
#!/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!"
|