https://github.com/saleh7/efs
:octocat: Easy file sharing 📤 from the command line
https://github.com/saleh7/efs
efs file malware python python3 scan upload
Last synced: 28 days ago
JSON representation
:octocat: Easy file sharing 📤 from the command line
- Host: GitHub
- URL: https://github.com/saleh7/efs
- Owner: Saleh7
- Created: 2017-06-04T02:15:56.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-04T04:09:06.000Z (about 9 years ago)
- Last Synced: 2025-06-28T10:57:09.406Z (12 months ago)
- Topics: efs, file, malware, python, python3, scan, upload
- Language: Shell
- Homepage: https://igeek.io/f
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# 📤 Easy file sharing from the command line 📤
## What is [EFS](https://igeek.io/f) ?
Easy File Sharing (efs) from the command line , free and open-source service to exchange small files.
## Usage :
#### How to upload
```bash
curl -T myfile igeek.io
# Or
curl --upload-file myfile igeek.io
```
#### Upload multiple files at once
```bash
curl -File=@/home/myfile -File1=@myfile igeek.io
# Or
curl -T {/home/file1, file2, /opt/file3} igeek.io
```
#### Upload a stream
```bash
curl http://igeek.io | curl -T - igeek.io
```
#### Upload and Scan for malware (VirusTotal)
```bash
curl -H "vt: yes" -T /home/myfile igeek.io
```
#### Upload with HTTP basic authentication
```bash
curl -u user:password -T /home/myfile igeek.io
```
#### Encrypt your files
```bash
# 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.?
```