Help for this page

Select Code to Download


  1. or download this
    perl -MFile::Spec -le 'sub tshark_path { my @filename = qw( / usr bin 
    +tshark ); if ( $^O eq q{MSWin32} ) { @filename = ( q{c:}, q{Program F
    +iles}, q{Wireshark}, q{tshark.exe} ); } return @filename; } my @file 
    += tshark_path(); print File::Spec->catfile( @file );'
    
  2. or download this
    # Result under Cygwin
    /usr/bin/tshark
    ...
    
    # Result from linux
    /usr/bin/tshark