Saturday, March 27, 2010

UNIX Shell 에서 arguments 다루기

script의 argument 및 argument 수 등 얻어내기
echo "num args : $#"
if [ $# -eq 3 ]; then
echo "arg3:"$3
elif [ $# -eq 2 ]; then
echo "arg2:"$2
else
echo "exception"
fi
설명 :
arguments의 수 : $#
첫번째 argument : $1
argument 가 file path일때 quoted path : "$1"
레퍼런스 :
UNIX Shell 에서 if, elif(else if), else, fi 사용 및 condition 비교문
if...elif...fi condition in Unix

No comments:

Post a Comment