gpt4 book ai didi

linux - bash 脚本中的时间性能增强

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:36:24 24 4
gpt4 key购买 nike

我有不同的文本文件和来自不同来源的不同输出。我需要在文本文档文件的不同行上输出。代码如下

for (( x = 1 ; x < 1000 ; x++ )) do

difference=$((file1 - file2))
echo $(tshark -r 1.pcap -c 1 -t ad | \
awk -F" " '{print $2,$3}') $difference \
$(awk 'FNR == "'$z'" {print}' 1.txt) >> ~/Desktop/information.txt
done

它工作正常,但需要很长时间。我相信这是因为脚本在循环中多次访问文本文档。知道如何使用其他方法来提高速度性能吗?

谢谢

最佳答案

您可以从将重定向移出循环开始:

for (( x = 1 ; x < 1000 ; x++ )) do
difference=$((file1 - file2))
echo $(tshark -r 1.pcap -c 1 -t ad | \
awk -F" " '{print $2,$3}') $difference \
$(awk 'FNR == "'$z'" {print}' 1.txt)
done >> ~/Desktop/information.txt

关于linux - bash 脚本中的时间性能增强,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17666043/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com