bin/pastebin @ f14a899254c7
Pastebin
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Sat, 11 Aug 2018 18:14:10 +0000 |
parents | (none) |
children | a47b90b61621 |
#!/usr/bin/env bash set -euo pipefail PASTE_SHA=$(ssh paste.stevelosh.com 'cat > tmppaste && sha1sum tmppaste | cut -d" " -f1 && mv tmppaste /var/www/paste/`sha1sum tmppaste | cut -d" " -f1`') echo -n "http://paste.stevelosh.com/$PASTE_SHA" | pbcopy echo -n 'Copied ' tput bold pbpaste tput sgr0 echo ' to the clipboard.'