Is there an easy way to filter all terminal commands that contain a --help flag?
Is there an easy way to filter all terminal commands that contain a --help flag?
Or is there maybe a way to set the pager for all help related queries to some command? I'm using bat and would like to pipe all --help through | bat --language=help
by default for the syntax highlighting and colored output... Or if you know a lower effort way to color the output of --help let me know.
I think your best bet to to create a script called help and run "help
<command>
" and the script would do the rest.I think this is the correct answer in all honesty. Create a new script like help (or man2 or whatever) that pipes the argument through bat for you.
There has to be a hook somewhere for every command that executes. I'm not sure, but something in the chain after using
set -x
then running any terminal command likely is on the right path to doing this. (If you tryset -x
, you can turn it off withset +x
).set -o
options are another I'm not very familiar with but might be related.set -x
configures the running process, your shell. This is a posix standard flag. See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.htmlWhy do think this? I'm not aware of any shells that have such a feature. I'm not saying it couldn't be done, but it would be a new feature.
I like the other suggestion of having a wrapper script that does what you need.
You'd be intercepting all commands just to verify if they have a help flag and then if not executing them as they were intended. If the intercept got broke, then the shell would be completely broken.