Skip to content

Instantly share code, notes, and snippets.

@sehrgut
Created May 16, 2018 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sehrgut/44bcd74175f5fee8fd2b2aac551e32c5 to your computer and use it in GitHub Desktop.
Save sehrgut/44bcd74175f5fee8fd2b2aac551e32c5 to your computer and use it in GitHub Desktop.
scrub nonprinting characters from the MacOS clipboard in one line
#!/bin/bash
pbpaste | sed 's/[^[:print:]]//g' | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment