Temporary file sharing - Files deleted after 60 minutes
i needed a simple temp file hosting where i can curl files from terminal
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