Created
January 27, 2020 13:20
-
-
Save joswr1ght/5cf40ebd95f790315b8989af17f2572d to your computer and use it in GitHub Desktop.
Dump the clipboard contents on macOS
This file contains hidden or 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
x=""; while true; do y=`pbpaste`; if [ "$x" != "$y" ] ; then echo $y; x=$y; fi; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment