Easy and Secure file sharing
from shell terminal

The simpliest way to upload from terminal

Terminal on Linux/BSD/MacOS
# Upload file using cURL
mycomputer:~# curl --upload-file file.txt https://dl.digdeo.fr/
URL : https://dl.digdeo.fr/PLlo7/file.txt
MD5 : b5447fe0a5dce7e64680d1859646a013

# Upload file with encryption
mycomputer:~# gpg -c file.txt && curl -T file.txt.gpg https://dl.digdeo.fr/
URL : https://dl.digdeo.fr/LROTp/file.txt.gpg
MD5 : eee0e6716aa35ced3228ae0ec9540f92
mycomputer:~#
 

The simpliest way to upload from terminal

TLS secured and feel free to encrypt

Public URL for sharing

Files stored for 5 days or 100 downloads

Size up to 5GB

Original filename preserved

Fast Upload and Download

Totally Free!

Sample usage cases

Simple upload and download

# Upload file
source:~# curl -T file.txt https://dl.digdeo.fr/
URL : https://dl.digdeo.fr/PLlo7/file.txt
MD5 : b5447fe0a5dce7e64680d1859646a013

# Download file
destination:~# curl -sO https://dl.digdeo.fr/PLlo7/file.txt
destination:~# md5sum file.txt
b5447fe0a5dce7e64680d1859646a013 file.txt

Encrypted upload and download

# Encrypt and upload file
source:~# cat file.txt | gpg -ac -o- | curl -T "-" https://dl.digdeo.fr/file.txt
URL : https://dl.digdeo.fr/lYXvy/file.txt
MD5 : af781b2f7316eaa533b87a2d7efd023a

# Download and decrypt file
destination:~# curl https://dl.digdeo.fr/lYXvy/file.txt | gpg -o- > file.txt

Rename file

# Upload file with new name
source:~# curl -T file.txt https://dl.digdeo.fr/newfilename.txt
URL : https://dl.digdeo.fr/PLlo7/newfilename.txt
MD5 : b5447fe0a5dce7e64680d1859646a013

Send URL by mail

# Upload file and send URL link by mail
source:~# curl -T file.txt https://dl.digdeo.fr/file.txt | mail -s "URL to file.txt" yourcontact@domain.com
URL : https://dl.digdeo.fr/PLlo7/file.txt
MD5 : b5447fe0a5dce7e64680d1859646a013

Service by DigDeo : a french hosting company