Method: Process.ps_command

Defined in:
lib/webget_ruby_ramp/process.rb

.ps_commandString

Get the process command, i.e. what the sytem will call for the “ps” command.

Examples:

Process.ps_command
=> "ps h ww -o blocked,group,pending,size"

Returns:

  • (String)

    the process command



203
204
205
# File 'lib/webget_ruby_ramp/process.rb', line 203

def self.ps_command
  @@ps_command||=PS_COMMAND_DEFAULT
end