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
#!/usr/bin/env bash | |
# | |
# Simple drop-in alternative for `pbcopy` which wipes the clipboard contents | |
# after a set time (30 seconds by default). | |
set -o errexit -o errtrace -o noclobber -o nounset -o pipefail | |
trap 'e=$?; if [ "$e" -ne "0" ]; then printf "LINE %s: exit %s <- %s%s\\n" "$BASH_LINENO" "$e" "${BASH_COMMAND}" "$(printf " <- %s" "${FUNCNAME[@]:-main}")" 1>&2; fi' EXIT | |
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
*.class | |
build/**/*.[jwe]ar | |
gems/ | |
gradle/wrapper/*.jar | |
node_modules/ | |
target/**/*.[jwe]ar | |
OlderNewer