Files
tldr/pages.zh/common/sk.md

465 B
Raw Blame History

sk

用Rust编写的模糊查找器。 类似于fzf。 更多信息:https://github.com/lotabout/skim

  • 在指定目录的所有文件上启动skim

find {{path/to/directory}} -type f | sk

  • 启动skim以查看运行中的进程:

ps aux | sk

  • 使用指定查询启动skim

sk --query "{{query}}"

  • 使用Shift + Tab选择多个文件并写入文件:

find {{path/to/directory}} -type f | sk --multi > {{path/to/file}}