You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pastey/templates/pastey.sh

20 lines
447 B

4 years ago
#!/bin/bash
# Install this script into your PATH and chmod +x
# Usage example:
# $ cat /var/log/nginx.log | pastey
4 years ago
if ! command -v curl &> /dev/null ; then
echo "Please install curl to use this script"
exit 1
fi
PASTEY_ENDPOINT="{{ endpoint }}"
PASTEY_CONTENT=$(</dev/stdin)
# Submit paste
PASTEY_LINK=$(curl -s -X POST -H "Content-Type: text/plain" --data "${PASTEY_CONTENT}" "${PASTEY_ENDPOINT}")
# Print link
echo "${PASTEY_LINK}"