이 두 구조는 Linux proces <input.txt
와 동일한 작업을 수행합니까 ?cat input.txt | process
답변1
일부 google-fu를 사용하기 위해 필요한 용어는 수행 중인 작업인 "리디렉션" process < input.txt
과 수행 중인 작업인 "파이프라인"입니다.cat input.txt | process
이 내용을 이해하고 나면 다음과 같은 기사를 찾을 수 있습니다. https://askubuntu.com/questions/172982/what-is-the-difference-Between-redirection-and-pipe
나는 이것이 당신의 질문에 아주 잘 대답한다고 생각합니다.