Free functions
exec | Executes a shell command and returns its exit code and standard output. Prefer using output if you only care about successful commands and want an error otherwise.... |
output | Runs a shell command and returns its stdout on success. If the underlying command exits with a non‑zero status, an error is returned which message includes the exit code.... |