From 88131c20a90cdaea404e686952d175ac503a1935 Mon Sep 17 00:00:00 2001 From: Ashish Shenoy Date: Wed, 16 Oct 2019 01:48:46 +0530 Subject: [PATCH] copyq: add page (#3411) --- pages/common/ copyq.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/ copyq.md diff --git a/pages/common/ copyq.md b/pages/common/ copyq.md new file mode 100644 index 000000000..8c81dbb58 --- /dev/null +++ b/pages/common/ copyq.md @@ -0,0 +1,32 @@ +# copyq + +> Clipboard manager with advanced features. +> More information: . + +- Launch CopyQ to store clipboard history: + +`copyq` + +- Show current clipboard content: + +`copyq clipboard` + +- Insert raw text into the clipboard history: + +`copyq add -- {{text1}} {{text2}} {{text3}}` + +- Insert text containing escape sequences ('\n', '\t') into the clipboard history: + +`copyq add {{firstline\nsecondline}}` + +- Print the content of the first 3 items in the clipboard history: + +`copyq read 0 1 2` + +- Copy a file's contents into the clipboard: + +`copyq copy < {{file.txt}}` + +- Copy a JPEG image into the clipboard: + +`copyq copy image/jpeg < {{image.jpg}}`