From 6d71375200d30bd4ce9dfc6833a33315b85cdbfe Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sun, 4 Jun 2017 14:17:01 +0000 Subject: [PATCH] added pbcopy --- sheets/pbcopy | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sheets/pbcopy diff --git a/sheets/pbcopy b/sheets/pbcopy new file mode 100644 index 0000000..6884a7c --- /dev/null +++ b/sheets/pbcopy @@ -0,0 +1,9 @@ +# pbcopy +# Place standard output in the clipboard. + +# Place the contents of a file in the clipboard: +pbcopy < file + +# Place the results of a command in the clipboard: +find . -type t -name "*.png" | pbcopy +