Hacker News new | ask | show | jobs
by dmitrygr 3011 days ago
why not

   pbpaste | qr-filetransfer /dev/stdin
1 comments

Or even just

    qr-filetransfer <(pbpaste)
This is not going to work unfortunately, the program expects the arguments to be paths.
<() expands to a path:

    $ echo <(true)
    /dev/fd/63
Ah, you are absolutely right