
Agora, antes de sinalizar isso como duplicado, entenda que procurei esse problema e já tentei todas as soluções sem efeito.
Meu roteiro:
#!/bin/bash
echo "Enter the number 3"
read t1
if [$t1 -eq 3]; then
echo "it is 3"
elif [$t1 > 3]; then
echo "it is greater than 3"
fi
exit 0
O erro que recebo é:
./g.sh: line 5: [3: command not found
./g.sh: line 7: [3: command not found
Responder1
espaços necessários if [ $t1 -eq 3 ]