From a5d35218447f6c70b3665fb4118e43095e75b6ab Mon Sep 17 00:00:00 2001 From: Jackson Huff Date: Sat, 24 Jun 2023 10:37:23 -0400 Subject: [PATCH] cb: add page (#10414) * cb: add page --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/common/cb.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/cb.md diff --git a/pages/common/cb.md b/pages/common/cb.md new file mode 100644 index 000000000..f8b48e88e --- /dev/null +++ b/pages/common/cb.md @@ -0,0 +1,36 @@ +# cb + +> Cut, copy, and paste anything in the terminal. +> More information: . + +- Show all clipboards: + +`cb` + +- Copy a file to the clipboard: + +`cb copy {{path/to/file}}` + +- Copy some text to the clipboard: + +`cb copy "{{Some example text}}"` + +- Copy piped data to the clipboard: + +`echo "{{Some example text}}" | cb` + +- Paste clipboard content: + +`cb paste` + +- Pipe out clipboard content: + +`cb | cat` + +- Show clipboard history: + +`cb history` + +- Show clipboard information: + +`cb info`