Learn R Programming

netstat (version 0.1.2)

parse_netstat: 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)

Value

A data.frame containing the Active Internet Connections from netstat() output

Arguments

netstat_output

The output of netstat() - i.e. a character vector comprising the output of the Netstat command line utility

Examples

Run this code
if (FALSE) {
  netstat_output <- netstat()
  (active_connections_table <- parse_netstat(netstat_output))
}

Run the code above in your browser using DataLab