这是我的代码:
grep $to_check $forbidden >${dir}variants_of_interest;
cat ${dir}variants_of_interest | (while read line; do
#process ${line} and echo result
done;
)
感谢 grep 我得到了几行数据,然后我在循环中单独处理。我想使用变量而不是使用文件variables_of_interest。
这样做的原因是我担心写入文件数千次(并因此读取文件)会迅速减慢计算速度,所以我希望避免写入文件会有所帮助。你怎么看?
我必须执行数千个 grep 命令,而variables_of_interest最多只包含 10 行。
感谢您的建议。