linux shell 編程5 函數獲取參數

#!/bin/sh
arg1=$1
arg2=$2
tellname ()
{
echo "this is  tellname funciton  and execute this  function tellname !"
echo "two  args: $arg1 , $arg2"
}
echo " execute function "
# execute  function
tellname

this

相關文章
相關標籤/搜索