parse_netstat {netstat} | R Documentation |
Parse the output of the 'Netstat' command line utility - obtained via netstat()
Description
Parse the output of the 'Netstat' command line utility - obtained via netstat()
Usage
parse_netstat(netstat_output)
Arguments
netstat_output |
The output of netstat() - i.e. a character vector comprising the output of the Netstat command line utility |
Value
A data.frame containing the Active Internet Connections from netstat() output
Examples
## Not run:
netstat_output <- netstat()
(active_connections_table <- parse_netstat(netstat_output))
## End(Not run)
[Package netstat version 0.1.2 Index]