By Sean Reifschneider Date 2008-08-25 17:13 Tags sean reifschneider, technical, zsh
One of the things I really miss about bash is the help for the "test" command (for shell conditionals). There's the test man page, but for some reason I just always want to type "help test" to see what I can use in shell conditionals. I finally decided to fix this and came up with the following line which can be added to ~/.zshrc:
function help { bash -c "help $@" }
comments powered by Disqus