cat disp.sh #!/bin/bash while getopts dm name do case $name in d)dopt=1;; m)mopt=1;; *)echo "Invalid arg";; esac done DT=`date '+%d %b'` if ...
確定! 回上一頁