#!/bin/bash echo $1 if [ $# -ne 0 ]; then if [ $1 -eq 1 ]; then echo "the argv = $1" echo "the argc = $#" #note: argc use $#
確定! 回上一頁