- Problema com Script
+ Responder ao Tópico
-
Problema com Script
Estou tentando fazer um script simples, só que não esta funcionando...
O script eu descrevo abaixo...
#!/bin/sh
if [ 1=1 ] then
echo "teste"
fi
A msg de erro é a seguinte:
teste.sh: line 5: syntax error near unexpected token `fi´
teste.sh: line 5: `fi´
Agora faço a pergunta... oq fazer... não sei como arrumar este problema... Gostaria que alguem me desse uma ajuda..
Grato!!
-
Problema com Script
Faltou o (<IMG SRC="images/forum/icons/icon_wink.gif"> antes do (then)
#!/bin/sh
if [ 1=1 ]; then
echo "teste"
fi
-
Problema com Script
[ Esta mensagem foi editada por: paulogrifo em 12-01-2003 23:05 ]