Peanut Butter - Pastebin clone

I have stuff in my clipboard

Paste it below and click the button. You will get back a paste ID, and a direct link.



I would like to upload a file

Go for it!  

Via curl

This is what I thought about when I decided to build Peanut Butter :)
Upload a file using PUT, you will get back the paste ID:


  curl -T some_stuff.txt https://tools.sebasmonia.com/pb
  0A1B2C3
      
No file? No problem! You can use a hyphen to read from stdin instead:

  echo 'Some content' | curl -T - https://tools.sebasmonia.com/pb
  0A1B2C3
      
Use your paste ID to get the text back, with a quick GET:

  curl https://tools.sebasmonia.com/pb/0A1B2C3
      

Something to keep in mind

Don't use this for anything important 🙃