capturando a saída de substituição do comando subshell

0

Estou tentando capturar a saída de uma substituição de comando. Isso funciona até que um pipe seja adicionado ao comando. Estou fazendo algo errado ou isso é um truque de mingw?

$ bash --version
GNU bash, version 4.3.46(2)-release (x86_64-pc-msys)
$ echo $(ls | wc -l)
23
$ test=$(ls | wc -l); echo test="$test"
test=
    
por ongle 19.06.2017 / 22:44

1 resposta

1

Isso parece um truque de mingw:

$ test=$(ls | wc -l); echo test="$test"
test=45
$ bash --version
GNU bash, version 4.3.43(1)-release (x86_64-redhat-linux-gnu)
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> 

This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
    
por 19.06.2017 / 22:49