aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/pasteme
blob: c6b9d3fe1b0c37c99bc31c382b64760f89cfeaf7 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
tempfile="$(mktemp)"
cat "${1:--}" > $tempfile
curl -w '%{redirect_url}\n' --data-urlencode content@$tempfile \
    http://paste.devys.org/
rc=$?
rm $tempfile
exit $rc