Os scripts Bash interpretam mal o comando após canalizar grep e sed

Os scripts Bash interpretam mal o comando após canalizar grep e sed

Parece que o bash interpreta mal o comando shasume tar. É um problema estranho onde algo anterior no script está afetando o código.

A partir do código abaixo,

  • shasumé executado e apresentado como:: asum: monero-gui-linux-x64-v0.15.0.4.tar.bz2
  • taré executado e apresentado como:'ar: Error opening archive: Failed to open 'monero-gui-linux-x64-v0.15.0.4.tar.bz2

Portanto, ambos os comandos estão falhando. Qual é o meu erro aqui?

PS. Para quem deseja tentar executar o código completo, a chave pgp pública deve ser importada para verificar o hash:https://github.com/monero-project/monero/blob/master/utils/gpg_keys/binaryfate.asc

#!/bin/bash

filename=$( curl -L --head https://downloads.getmonero.org/gui/linux64 2> /dev/null | grep Location: | sed 's:.*/::' )
filename_stripped=$( echo "$filename" | sed 's/\..[^.]*\.tar.bz2/ /g' )
version_repo=$( echo "$filename_stripped" | awk -F"-v" '/x64-v/ { print $2 }' )

echo "" 
echo Current version: $version_current
echo Repo version: $version_repo
echo ""

function update { 
    # Update
    wget -O hashes.txt https://getmonero.org/downloads/hashes.txt
    gpg --verify hashes.txt
    if [ $? -eq 0 ]
    then
        echo Signature OK
        wget --content-disposition https://downloads.getmonero.org/gui/linux64
        curr_shasum=$( shasum -a 256 "$filename" | awk '{ print $1 }' )
        grep "$curr_shasum" hashes.txt 
        if [ $? -eq 0 ]
        then
            echo Hash OK
            tar xvf "$filename"
        else
            echo Hash NOT ok
        fi

    else
        echo Signature NOT ok
    fi
}

while true; do
    read -p "Do you wish to update?" yn
    case $yn in
        [Yy]* ) update;break;;
        [Nn]* ) break;;
        * ) echo "Please answer yes or no.";;
    esac
done

Responder1

@steeldriverforneceu a resposta. Eu tive um retorno de carro invisível no nome do arquivo e resolvi isso com:

filename_CR=$(curl -L --head https://downloads.getmonero.org/gui/linux64 2> /dev/null | grep Location: | sed 's:.*/::')
filename=$(echo $filename_CR | tr -d '\r')

informação relacionada