pb.plz.ac - File Upload

📝 Text Upload

Paste or type your text content below:

📁 File Upload

Choose a file to upload (max 10MB):

💡 Command Line Usage

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"