文本文件抽样工具,超方便的日志文件抽样。
地址 https://github.com/zhangtaomox/samples
samples -k 2 -f Cargo.toml
# output
version = "1.0.5"
keywords = ["sample", "rand", "cli"]
1
sagaxu 195 天前 via Android
shuf 和 rl 都可以啊
|
3
zsh2517 193 天前
#1 提到的 shuf 大概这样(很多操作命令行都有能用的,比如排序、计数、简单文本处理等,一般搞个 alias 就够了)
``` ◉ /tmp > cat 1.txt 1 2 3 4 5 ◉ /tmp > cat 1.txt | shuf | head -n 3 (或者 shuf 1.txt | head -n 3 ) 4 1 3 ``` |