Live data from Hacker News

Unix Toolbox

cb.vu

31–40 of 42 posts

Re: Unix Toolbox

#31
post #24
post #18

Earlier quoted context omitted.

Yeah I found this via HN a couple years ago. This along with the following links will help anyone getting into sysadmin work: https://github.com/jlevy/the-art-of-command-line | https://www.bento.io/grid | https://www.sqlteaching.com/

https://nixsrv.com/llthw is the real deal (IMHO).

Bookmarked! I know a few getting into linux that could take advantage of this.

Re: Unix Toolbox

#33
post #27

I used to know a lot of this stuff. With Puppet, Chef, and then Ansible, I've found myself needing to know less and less of it.

And instead you now need to know a layer of abstraction and relearn that layer whenever it re-invents itself.

Re: Unix Toolbox

#34
post #21
post #11

Bro Pages (instead of "man" pages) is a similar resource I find myself using surprisingly often http://bropages.org/browse

That project is a symptom of manual pages not having good “EXAMPLES” sections. The examples on that web page should be contributed upstream to the manuals pages of the software that they are for. If you want a fast way to read the EXAMPLES section only for a command, here is a shell function which creates an ‘eg’ command which only displays the “EXAMPLES” section of manual pages: eg(){ MAN_KEEP_FORMATTING=1 man "$@"…

Any ideas where I'd find how to submit the man page patches? Some upstreams are incredibly hard to find.

Re: Unix Toolbox

#37
post #21

Earlier quoted context omitted.

That project is a symptom of manual pages not having good “EXAMPLES” sections. The examples on that web page should be contributed upstream to the manuals pages of the software that they are for. If you want a fast way to read the EXAMPLES section only for a command, here is a shell function which creates an ‘eg’ command which only displays the “EXAMPLES” section of manual pages: eg(){ MAN_KEEP_FORMATTING=1 man "$@"…

Any ideas where I'd find how to submit the man page patches? Some upstreams are incredibly hard to find.

Can you give me an example? What I’d do it look at the Debian package, which both documents where upstream is and has a bugtracker of its own which you can submit suggestions to, and the Debian maintainer should forward the submission to upstream if appropriate.

Re: Unix Toolbox

#38
post #11

Bro Pages (instead of "man" pages) is a similar resource I find myself using surprisingly often http://bropages.org/browse

Although slightly different, Commandlinefu is a similar project with many number of entries: http://www.commandlinefu.com

It also has a terminal client called "fu": https://github.com/samirahmed/fu

Re: Unix Toolbox

#40
post #37

Earlier quoted context omitted.

Any ideas where I'd find how to submit the man page patches? Some upstreams are incredibly hard to find.

Can you give me an example? What I’d do it look at the Debian package, which both documents where upstream is and has a bugtracker of its own which you can submit suggestions to, and the Debian maintainer should forward the submission to upstream if appropriate.

Aaand it eludes me - I'll keep that in mind for the next time I find a manpage without examples.
Post reply on HN