https://github.com/uutils/bsdutils
https://github.com/uutils/bsdutils
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/uutils/bsdutils
- Owner: uutils
- License: mit
- Created: 2024-01-26T19:20:48.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-18T05:02:07.000Z (over 1 year ago)
- Last Synced: 2024-10-19T07:49:05.838Z (over 1 year ago)
- Language: Rust
- Size: 154 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bsdutils
[](https://crates.io/crates/bsdutils)
[](https://discord.gg/wQVJbvJ)
[](https://github.com/uutils/bsdutils/blob/main/LICENSE)
[](https://deps.rs/repo/github/uutils/bsdutils)
[](https://codecov.io/gh/uutils/bsdutils)
Rust reimplementation of the bsdutils project
Provides command line tools:
Started:
- `/usr/bin/renice`: This command is used to change the priority of running processes. It can be used to increase or decrease the nice value of a process.
TODO:
- `/usr/bin/logger`: This command is used to add logs to the system log files. It provides a shell command interface to the syslog system log module.
- `/usr/bin/script`: This command is used to record a terminal session. The script makes a typescript of everything printed on your terminal.
- `/usr/bin/scriptlive`: This command is not standard, and may not be installed on all systems. If it exists, it's likely a variant of the `script` command that includes real-time features.
- `/usr/bin/scriptreplay`: This command is used to replay a terminal session that was recorded using the `script` command.
- `/usr/bin/wall`: This command is used to broadcast a message to all users logged into a system. The message can be typed directly into the terminal or read from a file.
## Installation
Ensure you have Rust installed on your system. You can install Rust through [rustup](https://rustup.rs/).
Clone the repository and build the project using Cargo:
```bash
git clone https://github.com/uutils/bsdutils.git
cd bsdutils
cargo build --release
cargo run --release
```
## License
bsdutils is licensed under the MIT License - see the `LICENSE` file for details