我的示例脚本看起来像
#!/bin/bash
VAR="foo"
if [ $VAR etc etc
then etc
...
有没有办法在不编写脚本的情况下调用脚本来更改 $VAR 的值?我会想象类似的东西
$ bash script.sh -v VAR="bar" (sorry for the invention)
我的示例脚本看起来像
#!/bin/bash
VAR="foo"
if [ $VAR etc etc
then etc
...
有没有办法在不编写脚本的情况下调用脚本来更改 $VAR 的值?我会想象类似的东西
$ bash script.sh -v VAR="bar" (sorry for the invention)