1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 01:22:10 +02:00
tldr/pages/common/sk.md
4G3NT 062b88d05a
pages/*: prefer brand name and add backticks around commands (#10422)
* pages/*: prefer brand name and add backticks around commands

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2023-06-27 23:57:35 +02:00

21 lines
469 B
Markdown

# sk
> Fuzzy finder written in Rust.
> Similar to `fzf`.
> More information: <https://github.com/lotabout/skim>.
- Start `skim` on all files in the specified directory:
`find {{path/to/directory}} -type f | sk`
- Start `skim` for running processes:
`ps aux | sk`
- Start `skim` with a specified query:
`sk --query "{{query}}"`
- Select multiple files with `Shift + Tab` and write to a file:
`find {{path/to/directory}} -type f | sk --multi > {{path/to/file}}`