Method: CommandMapper::Command#run_command

Defined in:
lib/command_mapper/command.rb

#run_commandBoolean?

Runs the command.

Returns:

  • (Boolean, nil)

    Indicates whether the command exited successfully or not. nil indicates the command could not be found.

[View source]

738
739
740
# File 'lib/command_mapper/command.rb', line 738

def run_command
  Kernel.system(@command_env,*command_argv)
end