Skip to content

Instantly share code, notes, and snippets.

@notakaos
Last active July 30, 2017 06:26
Show Gist options
  • Save notakaos/fb7122dce8439aa580d55e34f2a15aa1 to your computer and use it in GitHub Desktop.
Save notakaos/fb7122dce8439aa580d55e34f2a15aa1 to your computer and use it in GitHub Desktop.
pbcc - [Bash] Copy last command to clipboard (for macOS)
# ~/.bash_profile
### Copy last command to clipboard
function pbcc() {
local HISTIGNORE=*
history -p \!\! | pbcopy
history -d $(history | awk '{a=$1}END{print $1}')
}
echo "foobar"
pbcc
#=> Copy 'echo "foobar"' to clipboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment