Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
スクリプトに次の変数があります。
VAR=/opt/sbin/test
そして、行末に「テキスト」などのテキストをスペースで追加し、その行を次のように実行したい
/opt/sbin/test text
あなたが探しているコマンドは次のとおりだと思います:
VAR=/opt/sbin/test VAR="$VAR text" BLAH=$(${VAR})
上記は $VAR を /opt/sbin/test テキストに設定し、BLAH=$(${VAR}) がそれを実行します。