2025-02-01 18:07:27 +01:00
|
|
|
[](https://crates.io/crates/sed)
|
|
|
|
|
[](https://discord.gg/wQVJbvJ)
|
|
|
|
|
[](https://github.com/uutils/sed/blob/main/LICENSE)
|
|
|
|
|
[](https://deps.rs/repo/github/uutils/sed)
|
|
|
|
|
|
|
|
|
|
[](https://codecov.io/gh/uutils/sed)
|
|
|
|
|
|
|
|
|
|
# sed
|
|
|
|
|
|
2025-03-04 09:36:35 +02:00
|
|
|
Rust reimplementation of the [sed utility](https://pubs.opengroup.org/onlinepubs/9799919799/utilities/sed.html).
|
2025-02-01 18:07:27 +01:00
|
|
|
|
|
|
|
|
## 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/sed.git
|
|
|
|
|
cd sed
|
|
|
|
|
cargo build --release
|
|
|
|
|
cargo run --release
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
sed is licensed under the MIT License - see the `LICENSE` file for details
|