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.
たとえば、次のようなファイルの外観があります。
abc def ghi
ここで、Linuxシェルスクリプトを使用して、このファイルに従っていくつかの変数を設定したいと思います。次のような変数を設定する必要があります。
export abc=abc111 export def=def111 export ghi=ghi111
ご覧のとおり、変数名はリストファイルからも取得されます。ありがとう。
while read var; do export $var=${var}111 done < vars.txt