1 | initial version |
Those extra commands | sort | uniq
will not work on Windows, they are Unix (or BSD) commands.
If you have a recent version of Windows (Vista or later) then you do have PowerShell which offers similar commands e.g.
path\to\tshark -i ethernet -T fields -e ip.src | Sort-Object | Get-Unique
To use PowerShell you have to open a PowerShell prompt.