linux grep help output

Ok its strange post, but yiu can’t to do this:

docker --help | grep commit

You should do in this way:

docker --help 2>&1 | grep commit, or even: 2>&1 docker | grep commit

Leave a Reply

Your email address will not be published. Required fields are marked *