class Specinfra::Command::Aix::Base::Port

Public Class Methods

check_is_listening(port, options={}) click to toggle source
# File lib/specinfra/command/aix/base/port.rb, line 3
def check_is_listening(port, options={})
  regexp = "*.#{port} "
  "netstat -an -f inet | awk '{print $4}' | grep  -- #{regexp}"
end