Class AutomateIt::ShellManager::WhichUnix
In: lib/automateit/shell_manager/which_unix.rb
Parent: AutomateIt::ShellManager::WhichBase

ShellManager::WhichUnix

A ShellManager driver providing access to the which command found on Unix-like systems.

Methods

which  

Public Instance methods

See ShellManager#which

[Source]

# File lib/automateit/shell_manager/which_unix.rb, line 11
  def which(command)
    _which_helper do
      `which #{command} 2>&1`
    end
  end

[Validate]