Open metin02oktay opened 5 years ago
There is no tool that can do that. The closest thing would be rclone, but it still goes through localhost. To transfer without going through local you need to run rclone on a VPS.
On Mon, Jun 3, 2019 at 11:40 PM metin02oktay notifications@github.com wrote:
Can we upload files directly download url? Like a file transfering, from link to drive...
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/stewartmcgown/uds/issues/74?email_source=notifications&email_token=ADDUKM4ID6FADB6O66B3MXTPYUNMDA5CNFSM4HSIFH2KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4GXJGCNQ, or mute the thread https://github.com/notifications/unsubscribe-auth/ADDUKM2BDDLU7EJ3R5MKWOTPYUNMDANCNFSM4HSIFH2A .
you could pull off the same thing with this bash script
#!/bin/bash
wget -O $1 $0
python uds.py push $1
you could run it like push.sh https://archive.org/myfile.mp3 myfile.mp3
@innowebka the script is clear enough!
Absolutely nothing in UDS allows you to do what you want. I've written you a bash script that can do what you want, by downloading a file to your computer and then uploading it to UDS.
If you need a primer on bash, Google 'how to run bash scripts'.
On Tue, 4 Feb 2020, 22:52 innowebka, notifications@github.com wrote:
how to push files from links ? cant understand...need help if anyone interested tell me how to push files from direct download link (remote upload) ?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/stewartmcgown/uds/issues/74?email_source=notifications&email_token=AAIVNFHSW2IODBBM6CET2E3RBHWTLA5CNFSM4HSIFH2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKZPWZQ#issuecomment-582155110, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAIVNFEJ5Q7PKI7ABUNSR3TRBHWTLANCNFSM4HSIFH2A .
Can we upload files directly download url? Like a file transfering, from link to drive...