Single post

I just ran against a weird issue in a Debian Docker image where 'echo stuff > /dev/stderr' would **replace** stderr's current content with "stuff".

Had to s! > /dev/stderr! >> /dev/stderr!g to get the thing to work properly O.ô.

Wondering if it's a Docker thing.