> sudo tcpdump -l -e -I -i en0 | grep 'Probe Request ([^)]'
Not at all a tcpdump expert - fuddled around with manpages to make it work so others should please chime in with improvements.
sudo tcpdump -l -e -I -i en0 'type mgt subtype probe-req'
Way more efficient to use bpf instead of grep.
> sudo tcpdump -l -e -I -i en0 | grep 'Probe Request ([^)]'
Not at all a tcpdump expert - fuddled around with manpages to make it work so others should please chime in with improvements.