mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2026-02-03 14:13:26 +00:00
It is good to add newline at the end of response link #72
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 @ochaton on GitHub.
transfer.sh is wonderfully convenient to use as simple private file hosting to move files from server to server.
Usually, file is uploaded using
curl, ex:curl -T </path/to/file> <transfer_sh_endpoint>but created link is returned without newline, so it is not easy to copy.Many users, I suppose, add extra flags
curl -T </path/to/file> -w '\n' <transfer_sh_endpoint>but it is not comfortable.Is it okey, to add newline to the response?
@paolafrancesca commented on GitHub:
indeed it's easy with
(that's for mac, there are equivalente on other platform)
@paolafrancesca commented on GitHub:
hello @ochaton , long time discussed: we won't make any change on the backend.
there's plenty of options for users to add the newline on the client side, sorry :)