An open API service indexing awesome lists of open source software.

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

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)