The easy way to transfer files over the internet from your shell session, like copy and paste
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
forest c71d202dde Update 'ReadMe.md' 2 yıl önce
Dockerfile add architechture agnostic docker build 3 yıl önce
ReadMe.md Update 'ReadMe.md' 2 yıl önce
build-docker.sh bump version 3 yıl önce
main.go fix whitespace 7 yıl önce

ReadMe.md

webclip

The easy way to get a file onto or off of a remote machine without using scp.

Usage:

me@my-desktop:~$ ssh foo@fooserver.com
foo@fooserver:~$ cd /my/stuff
foo@fooserver:/my/stuff$ ls -lah
drwxrwxr-x 2 foo foo 4.0K  Nov  6 18:48 .
drwxrwxr-x 3 foo foo 4.0K  Nov  6 18:48 ..
-rw-rw-r-- 1 foo foo 10.0M Nov  6 18:48 myArchive.gz
-rw-rw-r-- 1 foo foo 28.0K Nov  6 18:48 myFile.txt
foo@fooserver:/my/stuff$ curl -s https://webclip.mydomain.com/myArchive.gz | bash
200 ok I got "myArchive.gz" with 10000000 bytes.
foo@fooserver:/my/stuff$ exit
me@my-desktop:~$ curl -s https://webclip.mydomain.com > myArchive.gz

After you clip something you may also grab it by hitting https://webclip.mydomain.com in your web browser.

Once it is downloaded the first time, it will be removed from the server and cannot be downloaded again.

Only one file can be clipped at once.