unixorn/tumult.plugin.zsh

View on GitHub
bin/pbclean

Summary

Maintainability
Test Coverage
#!/bin/bash
#
# Copyright 2022 Joe Block <jpb@unixorn.net>
# License: Apache 2

set -o pipefail

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

pbpaste | perl -pe 's/\r\n|\r/\n/g' | pbcopy
exit $?