2021-06-10 19:00:57 +01:00
|
|
|
# sk
|
|
|
|
|
|
|
|
> Fuzzy finder written in Rust.
|
|
|
|
> Similar to `fzf`.
|
|
|
|
> More information: <https://github.com/lotabout/skim>.
|
|
|
|
|
2023-06-27 22:57:35 +01:00
|
|
|
- Start `skim` on all files in the specified directory:
|
2021-06-10 19:00:57 +01:00
|
|
|
|
|
|
|
`find {{path/to/directory}} -type f | sk`
|
|
|
|
|
2023-06-27 22:57:35 +01:00
|
|
|
- Start `skim` for running processes:
|
2021-06-10 19:00:57 +01:00
|
|
|
|
|
|
|
`ps aux | sk`
|
|
|
|
|
2023-06-27 22:57:35 +01:00
|
|
|
- Start `skim` with a specified query:
|
2021-06-10 19:00:57 +01:00
|
|
|
|
|
|
|
`sk --query "{{query}}"`
|
|
|
|
|
|
|
|
- Select multiple files with `Shift + Tab` and write to a file:
|
|
|
|
|
2022-12-06 06:47:56 +00:00
|
|
|
`find {{path/to/directory}} -type f | sk --multi > {{path/to/file}}`
|