> The problem is that NFDUMP accepts the first file as stdin input and ignore the other ones. Is there any way to do this?

Well, there's just standard Unix stuff:

( bzip2 -dc file1.bz2; bzip2 -dc file2.bz2 ) | nfdump

Or more simply:

bzip2 -dc file1.bz2 file2.bz2 | nfdump

If that doesn't work, then it means the nfdump file is self-delimiting, i.e. it marks its own end.

Note, however, that if you let nfdump itself write out files every 5 minutes (as nfsen configures it to do) in its standard directory hierarchy, it is able to read whatever range of files it needs to cover the query period, and it does this automatically.


_______________________________________________
Nfdump-discuss mailing list
Nfdump-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfdump-discuss

Reply via email to