Google is your best friend. Unless you're looking up the details of a specific command or file format, Google should be the first resource you consult for any question. Make it a habit!!!
The manual pages, usually called "man pages" because they are read with the man command. Man pages are typically installed with the system.
man title formats a specific manual page and sends it to your terminal.
- For example we use the man command for ls command
$ man ls
As a result you get a page with:
- Name of the command
- Synopsis of the command
- Description of the command
And some other options that we will discuss later.
ls options [location]
When run without options or location ls will print a basic list of files and directories in the current directory.
-a, --all Show hidden and special files
-h, --human-readable Display files sizes in human-readable format
-l, --long Show permissions and size of each result
-r, --recursive List directories recursively
With apt-get install command, you download and install the software you want. Just like that, with a single command.
On your terminal write
$ apt-get install wget
and you are ready to go