Copied
https://share.schollz.com/
to clipboard
https://share.schollz.com/
to clipboard
Share a file
Click here for FAQ.
Are the files encrypted?
No. Any file you share is available publicly, without encryption, using the unique URL. If you need end-to-end encryption try send.firefox.com.
How long will my file be available?
Any file you share will be deleted after a time based on the file size. The time to deletion is scaled so that 1 GB file will be deleted after 30 minutes.
Can I share a file using the terminal?
Yes. If you are familiar with curl
you can use that to directly upload and download content.
Upload a file
$ curl -L --progress-bar --upload-file test.txt https://share.schollz.com
https://share.schollz.com/patient-gecko/test.txt
Or, use this .bashrc
/.zshrc
shortcut:
alias share='f() { curl --progress-bar --upload-file "$1" https://share.schollz.com | tee /dev/null; echo };f'
Download a file
$ curl https://share.schollz.com/patient-gecko/test.txt
or
$ wget --content-disposition https://share.schollz.com/patient-gecko