Closed tong closed 3 years ago
khamake -h currently prints the flag descriptions in a new line, which makes it unnecessary hard to grep a specific flag information.
khamake -h
grep
For example: khamake -h | grep 'shaderversion' just prints: --shaderversion
khamake -h | grep 'shaderversion'
--shaderversion
If printed in a single line it would show us the description, like: --shaderversion Set target shader version manually
--shaderversion Set target shader version manually
Beside that it would also save some lines aka scrolling.
khamake -h
currently prints the flag descriptions in a new line, which makes it unnecessary hard togrep
a specific flag information.For example:
khamake -h | grep 'shaderversion'
just prints:--shaderversion
If printed in a single line it would show us the description, like:
--shaderversion Set target shader version manually
Beside that it would also save some lines aka scrolling.