Paster help

Anonymous, private, non-indexed text and image hosting focused on quick creating and easy sharing.

PUT & Linux terminal

Website supports uploading using PUT in which case website output will be either URL of newly created Paste or short error description.
Here is simple alias, which you can save to your .bashrc:

alias paster="curl --request PUT --data-binary @- https://paster.palider.cz/ && printf '\n'"

Then you can pipe text like this

ls | paster

It also works for images:

cat some-image.jpg | paster

Or different application like photo from Raspberry's raspistill:

raspistill -w 1280 -h 720 -o - | paster

Scripts

For little more robust approach you can also download script paster.sh and save it locally only for you...

mkdir ~/bin -p && wget -O ~/bin/paster https://paster.palider.cz/scripts/paster.sh && chmod +x ~/bin/paster

... or globally for all users (root permission required)

sudo wget -O /usr/local/bin/paster https://paster.palider.cz/scripts/paster.sh && sudo chmod +x /usr/local/bin/paster

Then you can use it also other way around to paste file path as first argument:

paster some-image.jpg