36. Exotica 책의 마지막 장에서는 자주 사용하지는 않지만 특정 상황에서 도움이 되는 bash 명령어들을 살펴볼 것. Group commands and subshells 아래 문법으로 사용한다. # group command { command1; command2; [command3; ...] } # subshell (command1; command2; [command3;...])둘 다 redirection을 관리하는데서 사용된다. 여러 명령에서 redirection을 수행하는 스크립트를 생각해보자. ls -l > output.txt echo "foo.txt" >> output.txt cat foo.txt >> output.txt위 명령어는 각 명령어의 output들을 output.txt에 적는 간단..