리눅스에서 < (왼쪽 꺽쇠)
> awk '1' < /tmp/test_file
test
> cat /tmp/test_file | awk '1'
test
- 파일의 컨텐츠를 읽어서 stdin으로 넣는것
- 조금 다른 경우가 있지만,
cat file | command
과 동일한 역할로 보임 - 출처: https://unix.stackexchange.com/questions/283374/what-does-the-left-chevron-triangle-bracket-do
- 조금 다른 경우가 있지만,