Linux command
rum 命令
网络
复制后可按需替换文件名、目录或参数。
常用示例
Start a tracked background job
rum [my_long_script.sh]
List all tracked runs
rum --list
Show the output log of a run
rum --log [id]
Follow the live output of a running job
rum --log --follow [id]
Remove a tracked run by ID
rum --remove [id]
说明
rum lets you run and manage long-running background processes. You prefix any command with rum to start tracking it. Each run gets a unique ID for management. Output is captured and can be viewed later with --log, making it lighter than screen or tmux for simple job tracking, especially useful over SSH sessions that may disconnect.
参数
- --list
- List all tracked background runs with their status.
- --log _ID_
- Show the output log of a tracked run.
- --follow
- Used with --log to follow output in real time (similar to tail -f).
- --remove _ID_
- Remove a tracked run by its ID.
- --help
- Display help information.
- --version
- Display version information.
FAQ
What is the rum command used for?
rum lets you run and manage long-running background processes. You prefix any command with rum to start tracking it. Each run gets a unique ID for management. Output is captured and can be viewed later with --log, making it lighter than screen or tmux for simple job tracking, especially useful over SSH sessions that may disconnect.
How do I run a basic rum example?
Run `rum [my_long_script.sh]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does --list do in rum?
List all tracked background runs with their status.