// terminal-first file hosting with short keys
# Quick upload from pipe
cat file.txt | curl -F "file=@-"
# Upload with options
curl -F "file=@image.png" -F "ttl=1h" -F "password=secret"
# Download file
curl > file.txt
# Download password-protected file
curl "" > file.txt
# Delete file
curl -X DELETE ""
# Get file info
curl