shell argument에 따른 실행
if [ $# -eq 1 ] ; then a.exe $1 elif [ $# -eq 2 ] ; then a.exe $1 $2 else echo "Invalid Argument......" fi
by 공간사랑