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。您可以将cat命令替换为您感兴趣的命令。
pathToFiles
cat
如果pathToFiles只有一行(即只有一个文件名),那么你不需要for 循环,只需使用cat $pathToFiles
for
cat $pathToFiles