1

I am writing a shell script and I have a command "airodump-ng" and this program runs forever capturing the information about the access points. What I want to do in my script is to run the program and capture some information after exactly 10 seconds. So to put it in general terms, how can I capture some information from a live running program in my script. The format of "airodump-ng" is given below.

enter image description here

fur866
  • 413
  • 1
  • 5
  • 14

1 Answers1

1

aircrack-ng has its own command to store stream data into a file like csv and other formats

airodump-ng --write /sd/airodump.pcap --output-format pcap mon0
Munam Tariq
  • 160
  • 1
  • 3
  • 13