Search

'Shell Script'에 해당되는 글 2건

  1. 2009.10.14 [Shell Script] Shell Script 문법
  2. 2009.10.14 [Shell Script] PATH추가

[Shell Script] Shell Script 문법

프로그래밍/Server 2009. 10. 14. 13:01 Posted by galad
출처: http://www.2apes.com/~chack/htdocs/unix/script/


if문 사용관련
 if test $1  // 첫번째 인자가 있으면
then
        echo "Filename: $1"
else
        echo "Input Filename!!!"
        exit 1
fi
gcc -v -o $1 $1.m -lobjc


'프로그래밍 > Server' 카테고리의 다른 글

[unix] find 명령어 사용하기  (0) 2010.02.08
[Makefile] Makefile 소개(An Introduction to Makefiles)  (0) 2009.10.23
[Shell Script] PATH추가  (0) 2009.10.14
[Tomcat] 톰캣에 https 설정하기  (0) 2009.09.02
[unix] vi명령어  (0) 2009.04.16

[Shell Script] PATH추가

프로그래밍/Server 2009. 10. 14. 13:00 Posted by galad
출처: http://mwultong.blogspot.com/2006/07/cygwin-path-linux.html

PATH=${PATH}:추가할디렉토리경로