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"