3
일부 명령이 입력 리디렉션을 사용하지 않는 이유는 무엇입니까?
예를 들어 echo : [aesteban@localhost ~]$ cat tmp.txt Angel [aesteban@localhost ~]$ echo < tmp.txt [aesteban@localhost ~]$ 보다시피, 출력은 단지 빈 줄입니다. 내 독서에 따르면 일부 명령은 입력 리디렉션을 취할 수 있습니다 (예 : mail) . [aesteban@localhost ~]$ mail barney@example.com < tmp.txt 입력 리디렉션은 대화 형 명령 (입력을 기다릴 수있는 명령)에만 …