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.
セットアップ時に複数のファイルへのパスを要求するスクリプトを作成しようとしています。実際のスクリプトを実行すると、以前に作成したファイルからパスが読み取られます。ファイルを作成できます。必要なのは、そのパスを取得して現在のスクリプトで使用する方法を知ることだけです。
元。設定 /home/user/launcher ランチャー cat Settings read PathToLaunchers
/home/user/launcher
cat Settings
read PathToLaunchers
cd \$PathToLaunchers
read pathToFiles for f in $pathToFiles do cat $f done
に入力された各ファイルのコンテキストを出力しているだけですpathToFiles。catcommand は、興味のあるコマンドに置き換えることができます。
pathToFiles
cat
pathToFiles1行しかない場合(つまり、ファイル名が1つしかない場合)、for ループは必要なく、使用するだけですcat $pathToFiles
for
cat $pathToFiles