我正在编写一个bash脚本,该脚本需要输入目录,读取.txt文件中的一行文本并将该行复制到其他目录中的另一个文本文件,然后在许多不同的文本文件上重复此操作在他们自己的特定目录中。
这是我到目前为止的内容,但似乎并未阅读文本行。
for parameterfile in PB*/*.txt;
do
parameterfile= fit_parameter.txt
while IFS= read -r line;
do
echo "$line" >> full_system_parameters.txt
done<$parameterfile
done
答案 0 :(得分:0)
我使用了awk 1 PB*/*.txt >> full_system_parameters.txt
,这在full_system_parameters.txt
中提供了我需要的正确输出。