Terminal-style file upload service
Drop files here or click to browse
Max size: Loading...
Uploading...
No uploads yet
Basic upload:
curl -F "file=@/path/to/file.txt" -F "hours=6" http://localhost:8000/upload
With password protection:
curl -F "file=@/path/to/file.txt" -F "hours=6" -F "password=secret123" http://localhost:8000/upload
One-time download:
curl -F "file=@/path/to/file.txt" -F "hours=6" -F "one_time=true" http://localhost:8000/upload
Download with password:
wget "http://localhost:8000/xxxxx/filename.txt?password=secret123"