mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2026-02-06 23:42:17 +00:00
No URL returned after Upload #159
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Lorenz1508 on GitHub.
Hi
when i use this Command to upload a File it does not return any URL
find -name ""test".r*" -exec curl --progress-bar -O -T {} https://transfer.sh/{} \; | grep -oE 'https://transfer.sh/.*/test.r.{2}' > test.txtAfter the files are uploaded successfully, the links are neither saved in test.txt nor displayed in the terminal !
@paolafrancesca commented on GitHub:
hi @Lorenz1508 , you are using
-O:Write output to a local file named like the remote file we getIt seems that, while not file is get, the output is saved to the local file named like the uploaded file.
You may want to report this to curl
@paolafrancesca commented on GitHub:
also
findwill return the whole relative path as{}placeholder, not just the filename, ending in something like:https://transfer.sh/./directory/filename.extSomething like should work: