What is EFS ?
Easy File Sharing (efs) from the command line , free and open-source service to exchange small files.
curl -T myfile igeek.io
# Or
curl --upload-file myfile igeek.io
curl -File=@/home/myfile -File1=@myfile igeek.io
# Or
curl -T {/home/file1, file2, /opt/file3} igeek.io
curl http://igeek.io | curl -T - igeek.io
curl -H "vt: yes" -T /home/myfile igeek.io
curl -u user:password -T /home/myfile igeek.io
# Encrypt files with password using gpg
cat /home/myfile|gpg -ac -o-|curl -X PUT --upload-file "-" https://igeek.io
# Download and decrypt
curl https://igeek.io/f/6c0XRBqJ6p|gpg -o- > myfile.?