From d6ad312c5fa031d385109f7faee26964af8acec3 Mon Sep 17 00:00:00 2001 From: Muhammad Falak R Wani Date: Thu, 10 Jun 2021 23:30:57 +0530 Subject: [PATCH] skim: add page (#6081) Signed-off-by: Muhammad Falak R Wani Co-authored-by: Axel Navarro Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Nicolas Kosinski --- pages/common/sk.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/sk.md diff --git a/pages/common/sk.md b/pages/common/sk.md new file mode 100644 index 000000000..b3d7537bc --- /dev/null +++ b/pages/common/sk.md @@ -0,0 +1,21 @@ +# sk + +> Fuzzy finder written in Rust. +> Similar to `fzf`. +> More information: . + +- 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 > {{filename}}`