1 个稳定版本
1.0.5 | 2024年4月28日 |
---|
#1061 in 命令行工具
6KB
samples 是一个 Rust 命令行工具,用于从文本文件(纯文本、csv、日志...)或标准输入中抽取样本行
安装
Cargo
cargo install samples
手动
# download from github release
wget https://github.com/zhangtaomox/samples/releases/download/v1.0.5/samples-{YOUR PLATFORM}
使用方法
# from stdin
echo "1\n2\n3\n4\n5" | samples -k 2
5
1
# from a file
samples -k 2 example.txt
# pipe
cat example.txt | samples -k 2 > output.txt
许可证
MIT 或 Apache-2.0
依赖项
~3MB
~56K SLoC