![xargs 결과 {}를 $(cmd {})에 넣는 방법은 무엇입니까? [폐쇄]](https://linux55.com/image/39846/xargs%20%EA%B2%B0%EA%B3%BC%20%7B%7D%EB%A5%BC%20%24(cmd%20%7B%7D)%EC%97%90%20%EB%84%A3%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%80%20%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88%EA%B9%8C%3F%20%5B%ED%8F%90%EC%87%84%5D.png)
예를 들어
find /usr/lib -maxdepth 1 -type l -iname "*libblas*"|xargs -I{} echo "{} =>" $(realpath {})
다음과 같이 출력하고 싶습니다.
/usr/lib/libblas.so.3gf=>/usr/lib/libblas/libblas.so.3gf.0
/usr/lib/libblas.so=>/usr/lib/libblas/libblas.so.3gf.0
/usr/lib/libblas.a=>/usr/lib/libblas/libblas.a
$()
스크립트가 실제로 실행되기 전에 in 값이 확장되므로 이는 작동하지 않습니다 .
이 결과를 얻을 수 있는 방법이 있나요? Bash에 루프가 없나요?
답변1
이 방법을 시도해 볼 수 있습니다
find /usr/lib -maxdepth 1 -type l -iname "*lib*" -print \
| xargs -P1 -I{} -- sh -c 'echo -n " {} => " && realpath "{}"'
답변2
find /usr/lib -maxdepth 1 -type l -iname "*libblas*"|xargs -I{} sh -c 'echo "{} =>" $(realpath {})'
기본적으로 서브쉘을 시작해야 합니다. FWIW 실제 경로가 무엇인지 모르겠습니다. 별칭이나 함수인 경우 하위 쉘은 아마도 bash여야 합니다.