https://github.com/rinhizakura/file-cat
A demonstration of different kinds of cat(1) implemention with Rust
https://github.com/rinhizakura/file-cat
Last synced: 3 months ago
JSON representation
A demonstration of different kinds of cat(1) implemention with Rust
- Host: GitHub
- URL: https://github.com/rinhizakura/file-cat
- Owner: RinHizakura
- Created: 2022-07-21T13:21:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-26T05:11:36.000Z (almost 3 years ago)
- Last Synced: 2024-12-27T12:09:02.465Z (4 months ago)
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# file-cat
A demonstration of different kinds of cat(1) implemention with Rust.
## Reference
* [How efficient can cat(1) be?](https://ariadne.space/2022/07/17/how-efficient-can-cat1-be/)
* [uutils/coreutils - cat](https://github.com/uutils/coreutils/blob/main/src/uu/cat/src/cat.rs)
* [以 sendfile 和 splice 系統呼叫達到 Zero-Copy](https://hackmd.io/@sysprog/linux2020-zerocopy)
* [sysprog21/fastcat](https://github.com/sysprog21/fastcat)