method
start
v1_8_7_72 -
Show latest stable
- Class:
Shell::SystemCommand
start()public
No documentation available.
# File lib/shell/system-command.rb, line 49
def start
@pid, @pipe_in, @pipe_out = @shell.process_controller.sfork(self) {
Dir.chdir @shell.pwd
exec(@command, *@opts)
}
if @input
start_export
end
start_import
end