Closed
Description
When building a git-annex to ipfs bridge, I noticed that some ipfs commands were blocking, trying to read stdin. In this case, stdin was being used for git-annex IPC.
Commands observed to read stdin in this way:
ipfs cat $addr > file
ipfs add -q file
In both cases, I had to use </dev/null to provide ipfs with an empty stdin to avoid it hanging.