gpt4 book ai didi

linux - 如何将参数传递给 Bash 脚本?

转载 作者:IT老高 更新时间:2023-10-28 12:34:37 24 4
gpt4 key购买 nike

我有一个如下的 bash 脚本,我希望它读取两个日期作为参数,例如:myshell date1 date2。如何将参数分配给变量 date1date2

sed "s/$date1/$date2/g" wlacd_stat.xml >tmp.xml
mv tmp.xml wlacd_stat.xml

最佳答案

您在脚本中使用 $1$2。例如:

date1="$1"
date2="$2"
sed "s/$date1/$date2/g" wlacd_stat.xml >temp.xml
mv temp.xml wlacd_stat.xml

关于linux - 如何将参数传递给 Bash 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2645636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com