Skip to content

Instantly share code, notes, and snippets.

@xuwei-k
Created May 12, 2011 06:30
Show Gist options
  • Save xuwei-k/968045 to your computer and use it in GitHub Desktop.
Save xuwei-k/968045 to your computer and use it in GitHub Desktop.
Scalaでnetstatするだけのもの
//こんなものをいちいちScalaで作っちゃうほどにScala中毒((((;゚Д゚))))
def netstat = {
val p = Runtime.getRuntime.exec("netstat")
val lines = io.Source.fromInputStream( p.getInputStream ).getLines.toSeq
( lines.size , lines )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment