• [ ] < infile ls -l | wc -l > outfile
  • [ ] <infile grep hello | wc -w > outfile

  • [ ] < a

    → 현재는 그냥 no such file or directory

    → bash: a: no such~로 수정하기

  • [x] < a cat

    → a 파일 내용이 cat 되어져야 함.

  • [x] ls > a b

    → a 파일에 b가 적혀야 함.

  • [x] cat < a b c


  • [x] ls > a b > c d > e

  • [x] ls < a b

    → a만 파일로 생성

  • [x] ls < “a b”

    → a b가 파일로 생성