unixorn/tumult.plugin.zsh

View on GitHub
bin/clean-clipboard

Summary

Maintainability
Test Coverage
#!/bin/bash
#
# Convert contents of clipboard to plain text.

if [[ "$(uname -s)" != 'Darwin' ]]; then
  echo 'Sorry, this script only works on macOS'
  exit 1
fi

pbpaste | textutil -convert txt -stdin -stdout -encoding 30 | pbcopy