It's as easy as:
grep -nr --exclude-dir .svn 'something to grep' path
I personally set an alias:
alias gr='grep -nr --exclude-dir .svn '
so I can just type:
$ gr 'something to grep' path
and avoid any result from svn files.
Subscribe to:
Post Comments (Atom)
Decrypt SDES SRTP from pcap
If you have a pcap file with encrypted RTP (SDES SRTP) and have access to the SIP signalling to see the keys, these instructions will help y...
-
Before I forget again, a Wireshark setting that can help saving time by trying to interpret any UDP as RTP, if possible: Analyze --> Ena...
-
I needed an efficient way to programmatically extract RTP streams from a network capture. In addition I wanted to: save each stream into a s...
-
WebRTC applications use the ICE negotiation to discovery the best way to communicate with a remote party. I t dynamically finds a pair of...
No comments:
Post a Comment