首页 > 代码库 > shell(2):传入参数

shell(2):传入参数

 $1,$2  分别表示第一个第二个参数

1  #!bin/sh
2  ref=$1
3  trans=$2
4  echo $ref
5  echo $trans

技术分享

 

shell(2):传入参数