while getopts "hd:l:" opt; do case $opt in d ) directory=$OPTARG;; l ) depth=$OPTARG;; h ) usage exit 0;; \? ) usage exit 1;; esac ...
確定! 回上一頁