서브셸 명령 대체 출력 캡처

서브셸 명령 대체 출력 캡처

명령 대체의 출력을 캡처하려고 합니다. 이는 명령에 파이프가 추가될 때까지 작동합니다. 내가 뭔가 잘못하고 있는 걸까요, 아니면 이게 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=

답변1

이것은 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.

관련 정보