分享一些日常经常使用的命令行小工具,我认为这些小东西能提高我的工作效率。
percol
mooz/percol 这个工具是典型的 Unix 风格工具,它唯一做的事情就是通过管道接收输入,提供一个模糊搜索和 UI,用户选择后再把结果返回给后面的管道继续执行。
比如我这个 gt
的 alias 是我日常使用非常多的一个命令,做的事情就是 check out 一个 git 分支,因为我的本地通常有很多的分支,所以使用这个命令来模糊查找,然后选中就非常方便了:
alias gt="git branch| percol | awk '{ print \$1 }' | xargs git checkout "
类似的下面这个命令是 kill 掉某个进程,我们可以通过模糊搜索来找进程:
alias pk="ps eaux | percol | awk '{ print \$2 }' | xargs kill -9 "
如果你仔细总结,日常开发任何需要选择的地方都可以使用这个小工具来达到更高的效率,比如我工作的目录下有很多测试文件,测试其中一个文件的命令是 just ts file-path
,我需要找到其中一个来测试:
find ./tests/ui/ -name \*.rs | percol | xargs just ts
percol
可以嵌入到很多配置里面,比如在 tmux.conf
里面加入这个配置,这样可以模糊查找 tmux 的 session 和 window:
bind B split-window "tmux lsw | percol --initial-index $(tmux lsw | awk '/active.$/ {print NR-1}') | cut -d':' -f 1 | tr -d '\n' | xargs -0 tmux select-window -t"
bind b split-window "tmux ls | percol --initial-index $(tmux ls | awk \"/^$(tmux display-message -p '#{session_name}'):/ {print NR-1}\") | cut -d':' -f 1 | tr -d '\n' | xargs -0 tmux switch-client -t"
atuin
atuinsh 是一个记录 shell 历史的小工具,不同于普通的记录 shell history 的工具,atuin 会把数据记录在一个 SQLite 的数据库文件中,这样可以支持更丰富的查询功能。
另外 atuin 也支持不同机器之间的同步,当然这需要加密通信。我目前还没使用这种场景,只是把 Ctrl-R
绑定到了 atuin。
atuin 也是一个 Rust 实现的工具。
tmux
tmux 我之前听很多人推荐过,但是我一直没怎么尝试,直到某天我需要通过网页打开跳板机登录到服务器上,网络不稳定的情况下我经常需要重新登录,这时候我尝试了一下 tmux 发现真是太好用了。
tmux 的教程很多,比如 Tmux 使用教程 - 阮一峰的网络日志。我的 tmux.conf
配置很简单:
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
unbind-key C-b
set-option -g prefix C-Space
bind-key C-Space send-prefix
set-option -s set-titles on
set-option -g set-titles-string "#W/#T"
run '~/.tmux/plugins/tpm/tpm'
安装 tmux-resurrect
和 tmux-continuum
,这样即使我重启了机器,打开 tmux 后我的 session 仍然和之前一样。
最近也有个 Rust 写的 zellij,但我认为这种软件使用更老的会更方便,比如公司的远程服务器必然有 tmux,但不一定有 zellij。
just
casey/just: 🤖 Just a command runner 是我喜欢的另外一个 Rust 写的工具,我的日常工作中严重依赖这个工具,比如我的 rustc-dev 项目中配置渐渐积累了这么多的配置:rustc-justfile
just
有些像 Makefile,但使用起来又比 Makefile 的语法简单和直观,我通常是来把一些常用的命令写入 justfile,然后留下经常需要调整的参数,比如:
err FILE N:
rustup toolchain link dev2 ./build/aarch64-apple-darwin/stage1/
RUSTC_ICE=/tmp rustc +dev2 {{FILE}} -Z treat-err-as-bug={{N}}
这样我执行 just err tests/ui/consts/const-eval/infinite_loop.rs 1
的时候就相当于执行配置的一系列命令。
另外我也会把一些频繁需要修改的参数放到最后一个位置,比如本来我需要执行:
CKB_TEST_ARGS={{SPEC}} make integration
在 justfile 里面配置:
test-one SPEC:
CKB_TEST_ARGS={{SPEC}} make integration
执行 just test-one SPEC
来测试不同的用例就会方便点。
其他
- bootandy/dust: A more intuitive version of du in rust 一个更直观的 du
- aristocratos/btop: A monitor of resources 和 htop 类似,但是 UI 更好看些
- hurl: Hurl, run and test HTTP requests with plain text. 类似 Curl,但是更方便
你有什么喜欢的 Shell 工具,希望也能分享给我。