73 번 글: [Shell] example of get next args |
글쓴이: 산이
[홈페이지]
|
글쓴날: 2004년 03월 15일 01:24:31 월(새벽) |
조회: 3078 |
#!/bin/sh
#
# -- example of get next args
argc=$#
i=1
while [ "$i" -le "$argc" ] ; do
eval args="\$$i"
case "$args" in
-c)
i=$(($i+1))
eval cfg="\${$i}"
shift
;;
-f)
i=$(($i+1))
eval file="\${$i}"
shift
;;
esac
i=$(($i+1))
done
echo "cfg = $cfg , file = $file"
exit 0
|
이전글 : [Shell] find | xargs cmd 와 find | cmd
다음글 : [MySQL] /etc/my.cnf example
|
from 61.254.74.228
JS(Redhands)Board 0.4 +@
|