If you’re a developer and want to find out how deep the rabbit hole is, you may want to look at an online book Operating Systems: Three Easy Pieces: https://pages.cs.wisc.edu/~remzi/OSTEP/
EDIT: Forgot this important material:
If you need to know command-line argument specifics for a particular program, use manpages (For example, to find brief information about grep, type man grep in your shell, and info grep if you need a complete manual).
Unfortunately, Linux manuals are pretty scattered around. I’ll try to find something for you:
info
.EDIT: Forgot this important material:
grep
, typeman grep
in your shell, andinfo grep
if you need a complete manual).Thanks a lot !!