Method: Process.ps_command

Defined in:
lib/sixarm_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 -o blocked='' -o group='' -o pending='' -o size=''"

Returns:

  • (String)

    the process command



207
208
209
# File 'lib/sixarm_ruby_ramp/process.rb', line 207

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