$1
を使用します 、 $2
あなたのスクリプトで。例:
date1="$1"
date2="$2"
sed "s/$date1/$date2/g" wlacd_stat.xml >temp.xml
mv temp.xml wlacd_stat.xml
パラメータを反復処理するには、次の短縮形を使用できます:
#!/bin/bash
for a
do
echo $a
done
この形式は for a in "[email protected]"
と同じです .