Add Unix pipe support for put and get#246
Merged
Merged
Conversation
3ac1ba0 to
3af0907
Compare
Support stdin upload (`put - <target>`) and stdout download (`get <source> -`). Stdin is spooled to a temp file before upload; stdout downloads are byte-clean with retry-before-first-byte semantics and graceful EPIPE handling. Closes #194
3af0907 to
aac354b
Compare
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
put - <target>: upload from stdin (spooled to temp file, then existing upload path)get <source> -: download to stdout (byte-clean, retry before first byte only)Closes #194
Test plan
put -without target errorsput - /file.txtuploads stdin contentput - /-uploads to Dropbox path/-put ./- /remoteuploads local file named-put - /folder/rejects directory-style targetput - --recursiverejectsput - /existing-folderrejects when metadata says folderget /file.txt -writes exact bytes to stdoutget /- -downloads Dropbox path/-get /folder -andget -r /folder -rejectput,put -r,get,get -rbehavior unchanged