-
-
Save notakaos/fb7122dce8439aa580d55e34f2a15aa1 to your computer and use it in GitHub Desktop.
pbcc - [Bash] Copy last command to clipboard (for macOS)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.bash_profile | |
### Copy last command to clipboard | |
function pbcc() { | |
local HISTIGNORE=* | |
history -p \!\! | pbcopy | |
history -d $(history | awk '{a=$1}END{print $1}') | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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