0

I was wondering if there was any complete guide to the Linux Terminal (don't mind buying a book or something), specifically, I want the list (or book) to do an A-Z of the commands with all their parameters, reasons why you'd use those commands and examples.

If anyone has recommendations I'd be most appreciative!

Thanks in advance!

1 Answers1

6

To list complete list of Terminal Commands use:

compgen -b

which lists all built-in commands

compgen -c

lists all commands (maybe better to use compgen -c | less since it's a long list)

Taken from All main Terminal commands answered by @Cubiq


And below commands are what you want for complete details and their parameters:

man <command>
info <command>
<command> -h
<command> --help

If you want more information, type:

info coreutils <command>
αғsнιη
  • 36,350