私のサンプルスクリプトは次のようになります
#!/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)