usando awk dentro espera programa

-1

Estou usando o comando abaixo para mesclar o arquivo1 e o arquivo2 para obter o arquivo3:

awk 'NR==FNR {a[$2]=$1; next} {$(NF+1) = a[$NF]} 1' file2 file1 > file3 

Quando eu uso este comando dentro do script bash, espero que o arquivo3 esteja vazio (o comando está funcionando manualmente).

#!/bin/bash
# Bash Menu Script Example

outputMME="$( expect <<END
spawn ssh [email protected]
expect "Password: " { send "password\r" }
expect "# " { send "bash\r" }
expect "$ " { send "cd /tmp/DPE_CORE/home/atndn/eniq/\r" }
expect "$ " { send "awk 'NR==FNR{a[$2]=$1; next} {\\$(NF+1) = a[$NF]} 1' file2 file1 > file3\r" }
END
)"

echo "$outputMME"

Arquivo1:

 471808241 29164840 1 10001 156197396 
 471722917 21067410 1 31001 135961856 
 471941441 20774160 1 7001  180995072 
 471568655 29042630 1 15001 157502996 
 471524711 20716360 1 4001  180226817 
 471873918 29583520 1 2001  128567298 
 471568650 29042631 1 15002 157502910 

Arquivo2:

610146 156197396 
531101 135961856 
704011 180226817 
502216 128567298 
707012 180995072 
615246 157502996 
685221 157502910 

Arquivo3:

471808241 29164840 1 10001 156197396 610146 
471722917 21067410 1 31001 135961856 531101 
471941441 20774160 1 7001  180995072 707012 
471568655 29042630 1 15001 157502996 615246 
471524711 20716360 1 4001  180226817 704011 
471873918 29583520 1 2001  128567298 502216 
471568650 29042631 1 15002 157502910 685221
    
por Nydenn 28.02.2017 / 11:02

1 resposta

3

Para implementar o comentário da steeldriver:

outputMME="$( 
    expect <<'END'
        #....^ [1]
        spawn ssh [email protected]
        expect "Password: " { send "password\r" }
        expect "# " { send "bash\r" }
        expect "$ " { send "cd /tmp/DPE_CORE/home/atndn/eniq/\r" }
        expect "$ " { 
            send {awk 'NR==FNR{a[$2]=$1; next} {$(NF+1) = a[$NF]} 1' file2 file1 > file3}
            #....^ [2]
            send "\r" 
        }
        expect "$ " { send "exit\r" }
        expect "# " { send "exit\r" }
        expect eof
END
)"
  1. você precisa citar o terminador heredoc ( 'END' ) para que o bash não faça substituições variáveis (e outras) no documento.
  2. você precisa citar corretamente o comando awk para que o expect não substitua as variáveis awk.
por glenn jackman 28.02.2017 / 15:18