Created
January 5, 2020 19:40
-
-
Save Greenscreener/a3dac67a4bc7cad12dfe026072c3de36 to your computer and use it in GitHub Desktop.
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
# Each time you put something into your clipboard, it gets appended to a file | |
wat2=$(xclip -o); while true; do wat=$(xclip -o); if [ "$wat" != "$wat2" ]; then echo $wat >> wat.txt; echo $wat; fi; wat2=$(xclip -o); sleep 0.2; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment