We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cat --help
$ cat --help cat: unsupported flag: --help
Compare to zsh:
$ cat --help cat: illegal option -- - usage: cat [-belnstuv] [file ...]
Not the best, but still better.
Even better is man cat, which works in both zsh and shell. However, the options I think are only meant for zsh's cat, not our cat.
man cat
I think for our commands, we should support --help and print a nice well documented help screen for each option. ls --help works well.
--help
ls --help
The text was updated successfully, but these errors were encountered:
%
No branches or pull requests
Compare to zsh:
Not the best, but still better.
Even better is
man cat
, which works in both zsh and shell. However, the options I think are only meant for zsh's cat, not our cat.I think for our commands, we should support
--help
and print a nice well documented help screen for each option.ls --help
works well.The text was updated successfully, but these errors were encountered: