Sitegaga/Sitegaga

Sitegaga/Sitegaga

Command Line File Sharing Network

Links
::::::::::::::: Site Details ::::::::::::::::
Website address
Address
Category
brief introduction

Transfer.sh:command line It supports online drag-and-drop storage and command-line file storage. It supports uploading up to 5GB, uploading and downloading very fast, URL sharing of uploaded files, and ZIP or Tar compression.

Generally we upload files under Windows The website we share today can support Linux system and can be uploaded directly from the command line. A few simple commands can upload files from Linux system to the network and generate URL links.

Here are a few command parameters:

1. upload:curl --upload-file . /hello.txt https://transfer.sh/hello.txt

2、Download:curl https://transfer.sh/66nb8/hello.txt3. Create shared alias:

transfer() { curl --upload-file $1 https://transfer.sh/$(basename $1 ); }

alias transfer=transfer

4. Encrypted upload:cat /tmp/hello.txt|gpg -ac -o-| curl -X PUT --upload-file "-" https://transfer.sh/test.txt

5、decrypt download:curl https:// transfer.sh/1lDau/test.txt|gpg -o- > /tmp/hello.txt

See the above encryption and decryption features, there is also support for the maximum 5G file upload, and there is no upload file The number of restrictions, said here what do you think this storage site can do?


Command Line File Sharing Network
Scroll to Top