2014-12-01 3 views

답변

1

그건 몽고가 아닙니다. 그건 너의 쉘, < 입력 리디렉션입니다.

echo foo > somefile.txt 
     ^--- redirect output: write "foo" to somefile.txt 

someapp < somefile.txt 
     ^--- send file's contents to 'someapp' as input. 


someapp | otherapp 
    take output from "someapp" and feed to "otherapp" as input. 
+0

설명해 주셔서 감사합니다. 정말 감사. 그것은 제가 쉘에 대해 얼마나 아는 지 보여줍니다. – Razorocean

관련 문제