uses capital letters for fhs paths
"/user"
privileged commands prefixed with #
in fact, all commands prefixed with # but no space between
install from source limited to ./configure scripts
install packages via rpm only
using crusty old ifconfig for interface management
not enough time to hunt for more dumbness
dont use this deskmat it will make you stupid
you already have this information in your OS documentation and/or man pages
I work on really old Unix machines =/
But You are correct it oculd be better.
Wonder if I could create a custom one.
and Man pages can go so far.
Ever tried to man grep?
You can teach a full semester course on just grep.
linux is not great when it comes to man pages but unixes are usually pretty good.
here's the beginning of man grep from my linux workstation running void and upstream vanilla GNU grep, man page looks pretty good:
GREP(1) General Commands Manual GREP(1)
NAME
grep, egrep, fgrep - print lines matching a pattern
SYNOPSIS
grep [OPTIONS] PATTERN [FILE...]
grep [OPTIONS] [-e PATTERN | -f FILE] [FILE...]
DESCRIPTION
grep searches the named input FILEs for lines containing a match to the
given PATTERN. If no files are specified, or if the file “-” is given,
grep searches standard input. By default, grep prints the matching
lines.
In addition, the variant programs egrep and fgrep are the same as
grep -E and grep -F, respectively. These variants are deprecated, but
are provided for backward compatibility.