https://github.com/hymkor/sponge-rs
Rust で書いてみた sponge
https://github.com/hymkor/sponge-rs
rust rust-lang
Last synced: 23 days ago
JSON representation
Rust で書いてみた sponge
- Host: GitHub
- URL: https://github.com/hymkor/sponge-rs
- Owner: hymkor
- License: mit
- Created: 2023-09-07T13:14:24.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-09T02:12:56.000Z (over 1 year ago)
- Last Synced: 2025-02-10T15:50:59.620Z (3 months ago)
- Topics: rust, rust-lang
- Language: Makefile
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
sponge-rs
=========`sponge` written with Rust.
- The original sponge is https://joeyh.name/code/moreutils .
- The golang version of mine is https://github.com/hymkor/sponge .```
cat -n HOGEHOGE > HOGEHOGE.sponge
mv HOGEHOGE.sponge HOGEHOGE
```equals
```
cat -n HOGEHOGE | sponge HOGEHOGE
```