| ▲ | nodesocket 4 hours ago | |
I understand how this works, but wouldn’t a more clear syntax be: command &2>&1 Since the use of & signifies a file descriptor. I get what this ACTUALLY does is run command in the background and then run 2 sending its stout to stdout. That’s completely not obvious by the way. | ||
| ▲ | dheera 4 hours ago | parent [-] | |
even clearer syntax: command &stderr>&stdout | ||