You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standard Linux command like this fails:
./lc0 --help | more
Namely: all help is displayed as one huge mega-page, completely unreadble by humans. The pipe more doesn't work, because it uses stdout, which is empty buffer.
But redirecting stderr to STDOUT works:
./lc0 --help 2>&1 |more
Please redirect all output to STDOUT, where it should belong.
The text was updated successfully, but these errors were encountered:
Standard Linux command like this fails:
./lc0 --help | more
Namely: all help is displayed as one huge mega-page, completely unreadble by humans. The pipe more doesn't work, because it uses stdout, which is empty buffer.
But redirecting stderr to STDOUT works:
./lc0 --help 2>&1 |more
Please redirect all output to STDOUT, where it should belong.
The text was updated successfully, but these errors were encountered: