Go (to) BackGround, a hypersimple cli tool to run any command in the background from your shell.
cargo install gbggbg [-l LOG_FILE] <command> [args...]
- Without
-lthe command's output is discarded (/dev/null). - With
-lthe command's stdout & stderr are appended toLOG_FILE.
# Run a long-running script and discard output
gbg python long_task.py
# Run a long-running script and log everything to script.log
gbg -l script.log python long_task.pyBuilt for Linux & macOS. Requires the Rust installed