transfer.nephty.top: upload and share files from the terminal === Upload: $ curl --upload-file ./hello.txt https://transfer.nephty.top/hello.txt https://transfer.nephty.top/pine-hare-creek-954/hello.txt Encrypt with gpg & upload: $ cat hello.txt | gpg -ac -o- | curl -X PUT --upload-file "-" https://transfer.nephty.top/hello.txt.gpg Download & decrypt: $ curl https://transfer.nephty.top/charm-canoe-cotton-639/hello.txt.gpg | gpg -o- > hello.txt Delete (using the deletion URL returned at upload time): $ curl -X DELETE https://transfer.nephty.top/pine-hare-creek-954/hello.txt/ Add a shell function to your .bashrc / .zshrc: === transfer() { curl --progress-bar --upload-file "$1" "https://transfer.nephty.top/$(basename "$1")"; } === $ transfer hello.txt