IT인/프로그래밍
-
cvs user 생성 자동 스크립트IT인/프로그래밍 2008. 3. 24. 02:09
# cvsuseradd CVS 자체 계정생성 ----------------------------------------------------------------- #!/bin/ksh CVSROOT=/sw/util/cvs/cvs_repository echo "사용자 ID를 입력하세요 :\c" read UID if [ "$UID" = "" ] then continue fi if grep "^$UID:" $CVSROOT/CVSROOT/passwd > /dev/null 2>&1 then echo "사용자 ID $UID는 이미 있습니다. " grep "^$UID:" $CVSROOT/CVSROOT/passwd exit 2 fi echo "사용자 이름을 영문으로 입력하세요 :\c" read USRNM if [ "$U..
-
Javadoc 사용법IT인/프로그래밍 2008. 3. 24. 02:08
usage: javadoc [options] [packagenames] [sourcefiles] [classnames] [@files] -overview Read overview documentation from HTML file -public Show only public classes and members -protected Show protected/public classes and members (default) -package Show package/protected/public classes and members -private Show all classes and members -help Display command line options and exit -doclet Generate out..