추가 매개변수를 사용하여 실행 파일로 파이프

추가 매개변수를 사용하여 실행 파일로 파이프

파이프를 사용하는 이와 같은 명령이 있습니다

curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python

반면에 get-poetry.py다음과 같이 스크립트에 추가 매개변수를 제공 하고 싶습니다.

python get-poetry.py --version 0.7.0

배관을 올바르게 하려면 어떻게 해야 하며 가능합니까?

xargs현재 이와 같은 명령을 사용하려고 하는데 운이 없습니다.

curl -sSL get-poetry.py | xargs -I {} python "{}" --version 0.7.0

답변1

알겠습니다. 필요에 따라 작동하는 것 같습니다.

$ curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python /dev/stdin --version 0.7.0

어쨌든 다른 적합한 작업 솔루션이 있다면 해당 접근 방식도 보고 싶습니다.

관련 정보