Comment on $ cat ~/myfile | curl -X PUT --upload-file “-” https://transfer.sh/myfile.txtparentComments−cbd198410yYou can do that with pure pipes, without cat: foo < input This replaces foo's stdin with a pipe reading from input.
Comments
You can do that with pure pipes, without cat:
This replaces foo's stdin with a pipe reading from input.