Paste or type your text content below:
Choose a file to upload (max 10MB):
You can also use curl for uploads:
# Text upload echo "Hello World" | curl -X POST --data-binary @- "https://pb.plz.ac/" # File upload curl -X POST -F "file=@myfile.txt" "https://pb.plz.ac/" # With detailed output echo "test" | curl -F "c=@-" "https://pb.plz.ac/?v=1"