I am creating an automatic routine to save pcap file. I'm having trouble saving the file with the date. Can someone help me?
asked 26 Jun '17, 18:09 JorgeMiguelr210 |
2 Answers:
Those date commands appear to generate a file name with spaces in it. In that case you're going to need to quote the file name so that it's passed to tshark as a single argument (rather than 2 or more). For example:
At least that's what would be necessary on Unix/Linux (which I'm far more familiar with...). answered 27 Jun '17, 06:44 JeffMorriss ♦ |
You have a 1-character typo, namely the percent (
to this:
answered 27 Jun '17, 20:49 cmaynard ♦♦ |