Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Last active August 29, 2018 10:06
Show Gist options
  • Save YumaInaura/cf4e03dad3516415e4be21ce24d8f7fa to your computer and use it in GitHub Desktop.
Save YumaInaura/cf4e03dad3516415e4be21ce24d8f7fa to your computer and use it in GitHub Desktop.
Mac — pbcopy keeping stdout

Mac — pbcopy keeping stdout

Command example

echo "Alice" | tee >(pbcopy)
Alice
$ pbpaste
Alice

Alias example

alias pbcopy="tee >(/usr/bin/env pbcopy)"

You can put above line in rc file. e.g ~/.zshrc ~/.bashrc

Links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment