Skip to content

Instantly share code, notes, and snippets.

@joswr1ght
Created January 27, 2020 13:20
Show Gist options
  • Save joswr1ght/5cf40ebd95f790315b8989af17f2572d to your computer and use it in GitHub Desktop.
Save joswr1ght/5cf40ebd95f790315b8989af17f2572d to your computer and use it in GitHub Desktop.
Dump the clipboard contents on macOS
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