sshkey-grab icon indicating copy to clipboard operation
sshkey-grab copied to clipboard

fix stdout & stderr redirection

Open lager1 opened this issue 4 years ago • 0 comments

The redirection in gdb command is most likely mistyped. The was it is written it passes an argument 2 to the gdb and it actually produces a file 1.

gdb ... 2&>1 >/dev/null

The author most likely wanted to write the code below which redirects the stderr to stdout and then both to /dev/null:

gdb ... 2>&1 >/dev/null

This PR fixes that.

lager1 avatar Mar 22 '20 00:03 lager1