-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
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
Improve man page #107
Improve man page #107
Conversation
Lsof.8
Outdated
# reload anything using old SSL | ||
lsof -t /lib/*/libssl.so.* | xargs -r kill -HUP | ||
|
||
# get list of processes and then iterate over them |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that one extra white space is at the start of the line. Could you remove it for aligning.
3bb7496
to
9248da1
Compare
Do you allow me to rearrange the commits? I guess you are using GitHub's web UI. It may be hard to reflect my comments to your change with the UI. |
e3fbaf6
to
c2cdd73
Compare
(The "kill" command doesn't read stdin, so anything _piped to_ it would be ignored.)
Done. (And properly attributed the commits to my normal public persona.) |
Thank you. |
Putting examples to the man page is a good idea. |
The "piped to" description is flat wrong, because "kill" doesn't read anything from stdin.
Saying that one command line option "selects" another is weird; "implies" would be clearer, both times it's mentioned.
Also added some examples.