Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upno man page #477
Comments
This comment has been minimized.
This comment has been minimized.
|
there is Re: manpage It's rather short, but at least there is one. :-) |
This comment has been minimized.
This comment has been minimized.
|
It seems like the http(1) manpage has been added, but there is issues with it. |
This comment has been minimized.
This comment has been minimized.
|
Tools such as help2man can help generate a man page. |
This comment has been minimized.
This comment has been minimized.
|
Duplicate of #248 |
This comment has been minimized.
This comment has been minimized.
|
Any tips for good format/tools/workflow for the making a man page? |
This comment has been minimized.
This comment has been minimized.
|
Word of warning: Downstream Linux redistributors will not care about the man page you generate and in most cases generate one of equal or lesser quality. Further, |
This comment has been minimized.
This comment has been minimized.
|
I would like to re-activate this thread, as To the point, my suggestion is to change the I would leave a shorter Later, that file will have to be maintained as you do now with the What do you think ? |
This comment has been minimized.
This comment has been minimized.
|
@jakubroztocil are you interested in this ? Thanks. |
This comment has been minimized.
This comment has been minimized.
|
@pacoesteban why even bother rewriting in The python community prefers |
This comment has been minimized.
This comment has been minimized.
|
I brought this back because the current readme is not really structured as a man page. I think it should be something like a refactored mix of the readme and Of course is not my intention to try to impose my view on how docs should be to the python community or to this project, and I see little interest on this. So, do you think the current readme could be modified in a way that some tool like |
This comment has been minimized.
This comment has been minimized.
|
I'm not a maintainer but I definitely agree that "an imperfect man page is better than none at all". As for my comment, earlier, Debian and Fedora have outright refused to use man pages bundled in projects I've worked on (e.g., OpenStack CLI tooling) in the past. Combine that with the understanding that |
This comment has been minimized.
This comment has been minimized.
|
I have made an alias for This is for ZSH on MacOS: man() {
if [[ $@ == "httpie" ]]; then
command open https://httpie.org/doc
else
command man "$@"
fi
} |


Lacks documentation other than a basic usage message when run w/o arguments. A man file would be nice.