+ Responder ao Tópico



  1. #1
    Gabriel_Junior
    Visitante

    Padrão 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!!

  2. #2
    paulogrifo
    Visitante

    Padrão 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

  3. #3
    paulogrifo
    Visitante

    Padrão Problema com Script



    [ Esta mensagem foi editada por: paulogrifo em 12-01-2003 23:05 ]