gbg

Crates.iogbg
lib.rsgbg
version1.0.1
created_at2025-07-20 11:35:16.722427+00
updated_at2025-07-20 11:41:26.886467+00
descriptionA simple tool to run commands in the background
homepage
repositoryhttps://github.com/akshaykripalani/gbg
max_upload_size
id1761004
size5,036
Akshay Kripalani (akshaykripalani)

documentation

README

gbg

Go (to) BackGround, a hypersimple cli tool to run any command in the background from your shell.

Install

cargo install gbg

Usage

gbg [-l LOG_FILE] <command> [args...]
  • Without -l the command's output is discarded (/dev/null).
  • With -l the command's stdout & stderr are appended to LOG_FILE.

Examples

# 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.py

Built for Linux & macOS. Requires the Rust installed

Commit count: 0

cargo fmt