tmp.craftum.pl

Temporary file sharing - Files deleted after 60 minutes

Upload a File

Click to select a file or drag & drop

Max file size: 128 MB

How It Works
1. Upload Select or drag any file
2. Share Get a unique link
3. Expire Auto-deleted after 60 minutes
Security None, why are you asking?
Why?

i needed a simple temp file hosting where i can curl files from terminal

API / cURL
curl -X POST -F "file=@yourfile.txt" https://tmp.craftum.pl/

Bash/Zsh alias (add to ~/.bashrc or ~/.zshrc):

tmp() { curl -X POST -F "file=@$1" https://tmp.craftum.pl/ }

Usage: tmp myfile.txt