将变量传递到大括号上的Bash shell脚本



我正在拔头发,

#!/bin/sh
queryNumber=10
if [ "$1" == "start" ]; then
systemctl start myProcess@{1..$queryNumber}
elif [ "$1" == "stop" ]; then
systemctl stop myProcess@*
fi

有人知道为什么我不能将$queryNumber参数传递到shell脚本上吗

这可能是由于queryNumber被定义为环境变量或者尝试在Bash Shell而不是sh 中运行程序

相关内容

  • 没有找到相关文章

最新更新