I dont enjoy web searching every time. Id like to just have some sort of document I can read or search to find certain commands.
I do have the man pages on kiwix but is a little complex to navigate. Like if I want to learn how grep works, what’s the best way. Or if I forgot lshw, how do you go about looking up a command that does a certain thing like list out hardware etc.
Showing examples would be super helpful too, like “here’s a typical dd command for a drive image clone”
Preferably a desktop/android app or something that helps with this would be nice.
The commands
man
andapropos
are your friends to get you started.Learning how to use specific tools like
grep
,sed
andawk
is a case of getting started by using them. Most of the subsequent learning process will focus around how to create regular expressions (regex
), for which there’s also a manpage.The “typical example” for a
dd
command is like saying, “here’s a great way to shoot yourself in the foot”. A better way is to understand that most of these tools follow the UNIX philosophy:Once you “grok” that, you’ll be in a much better place.
I’m also a fan of
tldr
.sed
is starting to click for me, which is nice, only took 10 years.Wait until you get your head around
awk
😇