Class: Specinfra::Command::Darwin::Base::Port

Inherits:
Base::Port show all
Defined in:
lib/specinfra/command/darwin/base/port.rb

Class Method Summary collapse

Methods inherited from Base

create, escape

Class Method Details

.check_is_listening(port, options = {}) ⇒ Object



3
4
5
6
# File 'lib/specinfra/command/darwin/base/port.rb', line 3

def check_is_listening(port, options={})
  regexp = ":#{port} "
  "lsof -nP -iTCP -sTCP:LISTEN | grep -- #{escape(regexp)}"
end