From 278ac3f43949f2e5226e6132611441ebcdbbd34e Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Thu, 18 Aug 2022 19:21:09 -0700 Subject: [PATCH] pbcopy: update page (#8372) * pbcopy: fix stdin/stdout mixup in description * Update pages/osx/pbcopy.md Co-authored-by: Adrien Thebo * Update pages/osx/pbcopy.md Co-authored-by: Emily Grace Seville * Conform pbcopy page to tldr standards Co-authored-by: Adrien Thebo Co-authored-by: Emily Grace Seville --- pages/osx/pbcopy.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/osx/pbcopy.md b/pages/osx/pbcopy.md index 28b2cbd4d6..1e61edc798 100644 --- a/pages/osx/pbcopy.md +++ b/pages/osx/pbcopy.md @@ -1,12 +1,12 @@ # pbcopy -> Place standard output in the clipboard. +> Copy data from stdin to the clipboard. > More information: . -- Place the contents of a file in the clipboard: +- Place the contents of a specific file in the clipboard: -`pbcopy < {{file}}` +`pbcopy < {{path/to/file}}` -- Place the results of a command in the clipboard: +- Place the results of a specific command in the clipboard: `find . -type t -name "*.png" | pbcopy`