ThePragmaticProgrammer에 소개되는 ComputerProgramming 교훈중 하나.
Introduction
프로그래머의 workbench는 shell이다. prompt에서 각각의 tool들을 이용하고, pipe로 조합하고, 매크로로 자동화 할 수 있다.
GraphicUserInterface넘 좋아하지 말라. GUI가 주장하는 WYSIWYG - What You See Is What You Get 은 사실 WYSIAYG - What You See Is All You Get이다. GUI환경 및 IDE는 그 디자이너의 생각안에 일반인들을 가둬버린다. prompt의 사용을 통해서, 각종 GUI에서의 작업들을 자동화시킬 수 있으며, pipe로 다른 툴들과 조합시킬 수 있다.
Example
다음의 예제들이 시사하는 바가 크다. 만일 이 작업들을 GUI에서 하게 되면 얼마나 비능률적일까...
Find all .c files modified more recently than your Makefile
find . -name '*.c' -newer Makefile -print
Construct a zip/tar archive of my source
zip archive.zip *.h *.c - or - tar cvf archive.tar *h. *c
Which Java files have not been changed in the last week?
find . -name '*.java' -mtime +7 -print
Of those files, which use the awt libraries?
find . -name '*.java' -mtime +7 -print | xargs grep 'java.awt'
Need to create a list of all the unique package names explicitly imported by your Java code?
grep '^import ' *.java | sed -e's/.*import *//' -e's/;.*$//' | sort -u > list
Sell utilities and windows systems
비록 MS-Windows, NT에서의 shell이 Unix에 비해 inferior하지만, 방법이 있다. See UnixToolsUnderDos
Useful shell commands
Discussion
JuneKim씨와의 PairProgramming이 생각난다. 그는 CVS뿐아니라 각종 프로그램들을 모두 shell에서 사용했다. copy같은것들도 모두... 그땐 왜 그가 command line을 즐겨쓰는지 잘 몰랐었다. 이제야 알것같다. --yong27