/ bin / sh: definição da função de importação de erros para 'module'

1

Eu tenho script agora, mas sempre alerta que isso é um erro.

stderr=/bin/sh: module: line 1: syntax error: unexpected end of file /bin/sh: error importing function definition for module ''

#!/bin/sh
#
# pgp.sh
# Script to take PGP Command Line 6.5.8 (Freeware) output from PGPPackageService
# or PGPUnpackageService and execute the appropriate GnuPG commands 
#
if [ "$9" = "-se" ]
then MODE="encrypt_and_sign"
fi
if [ "$9" = "-e" ]
then MODE="encrypt_only"
fi
if [ "$8" = "-o" ]
then MODE="decrypt"
fi
#
case "$MODE" in
    "encrypt_and_sign")
        #
        # Logic for encrypt and sign
        #
        if [ "$6" = "+armor=on" ];
            then
                OPTIONS='--armor '$OPTIONS
        fi
        if [ "$7" = "+textmode=on" ];
            then
                OPTIONS='--textmode '$OPTIONS
        fi
        PASS=${15}
        OUTFILE=${17}
        USER=${13}
        REMOTE=${11}
        INFILE=${10}
        #Original script from Bryce
        #echo "$PASS" | "gpg $OPTIONS --no-tty --output $OUTFILE --passphrase-fd 0 -u $USER -r $REMOTE --sign --encrypt $INFILE"
        #script from Tyn, removed --passphrase-fd 0 and echo and double quotes
        #03252015: Tyn: Added --trust-model always for newly imported keys to be usable
        /usr/bin/gpg --trust-model always $OPTIONS --no-tty --output $OUTFILE -u $USER -r $REMOTE --sign --encrypt $INFILE

    ;;
    "encrypt_only")
        #
        # Logic for encrypt
        #
        if [ "$6" = "+armor=on" ];
            then
                OPTIONS='--armor '$OPTIONS
        fi
        if [ "$7" = "+textmode=on" ];
            then
                OPTIONS='--textmode '$OPTIONS
        fi
        OUTFILE=${13}
        REMOTE=${11}
        INFILE=${10}
        #original script from Bryce
        #echo "$PASS" | "gpg $OPTIONS --no-tty --output $OUTFILE --passphrase-fd 0 -r $REMOTE --encrypt $INFILE"
        #script from Tyn, removed --passphrase-fd 0 and echo and double quotes
        #03252015: Tyn: Added --trust-model always for newly imported keys to be usable
        /usr/bin/gpg --trust-model always $OPTIONS --no-tty --output $OUTFILE -r $REMOTE --encrypt $INFILE
    ;;
    "decrypt")
        #
        # Logic for decrypt
        #
        PASS=${7}
        OUTFILE=${9}
        INFILE=${5}
        #Original script from Bryce
        #echo "$PASS" | "gpg --no-tty --output $OUTFILE --passphrase-fd 0 --decrypt $INFILE"
        #script from Tyn, removed --passphrase-fd 0 and echo and double quotes
        #03252015: Tyn: Added --trust-model always for newly imported keys to be usable
        /usr/bin/gpg --trust-model always --no-tty --output $OUTFILE --decrypt $INFILE
    ;;
esac
    
por EDD 18.05.2017 / 09:34

1 resposta

3

Parece que você tem uma função exportada quebrada no ambiente, como aqui (a função está faltando um ponto-e-vírgula e a chave de fechamento):

$ env "BASH_FUNC_foo%%"="() {  echo foo" bash -c "echo blah"
bash: foo: line 1: syntax error: unexpected end of file
bash: error importing function definition for 'foo'
blah

O Bash exporta funções através do ambiente e as lê automaticamente a partir daí, obviamente reclamando se elas possuem erros de sintaxe. Ele faz isso mesmo se iniciado como sh . Isso significa que você deve receber o mesmo erro ao executar qualquer script, por exemplo, esta simples:

#!/bin/sh
echo hello

Você pode verificar o que tem no ambiente com algo como env | grep module (o prefixo BASH_FUNC_ e o sufixo %% podem não ser os mesmos). Em seguida, você precisará descobrir onde essa variável de ambiente está definida. É muito difícil definir um em um script Bash, já que % não é um caractere válido em nomes de variáveis de shell.

    
por 18.05.2017 / 09:51