Method |
Description |
|
passthru ( string $command ) : void |
Pass the command to the command line and display the output. |
|
quietly ( string $command ) : void |
Simple global function to run commands. |
|
quietlyAsUser ( string $command ) : void |
Simple global function to run commands. |
|
run ( string $command, callable $onError = null ) : string |
Run the given command as the non-root user. |
|
runAsUser ( string $command, callable $onError = null ) : string |
Run the given command. |
|
runCommand ( string $command, callable $onError = null ) : string |
Run the given command. |
|