getoptsを使用してすべてのパラメータを別のソースbashスクリプトに渡す
あるスクリプトから別のスクリプトにすべてのパラメータを渡そうとします。ただし、別のスクリプトをインポートすると問題が発生します。すべてのパラメータが正しく渡されません。 最初の.sh: #!/usr/bin/bash while getopts a option do case "${option}" in a) echo 'OptionA:somevalue';; esac done # This way works ./second.sh "$@" # Does not work when source c...