↧
Answer by Ole Tange for parallel processing reading from a file in a loop
Can you use GNU Parallel: parallel -j15 tshark -r /mnt/pcap/captures/{} \'"-Y ip.addr == $ip"\' -w /home/username/loading_dock/{}.pcap :::: /home/username/loading_dock/load.txt GNU Parallel is a...
View Articleparallel processing reading from a file in a loop
PCAP script. I have a server with 32 processors, and need to maximize this script to utilize those processors. Currently, the program tshark only uses 1 processor, so I need to run multiple instances...
View Article