Complete List of Terminal Commands and all their parameters

20,460

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>
Share:
20,460

Related videos on Youtube

SomeAmbigiousUserName
Author by

SomeAmbigiousUserName

Updated on September 18, 2022

Comments

  • SomeAmbigiousUserName
    SomeAmbigiousUserName almost 2 years

    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!

    • j0h
      j0h over 9 years
      I'd point you to ss64.com normally, but their server is down tight now.
    • SomeAmbigiousUserName
      SomeAmbigiousUserName over 9 years
      I'll add it to bookmarks and check back each day :-)
    • user68186
      user68186 over 9 years
      How about searching an online book retailer like amazon.com? Search for "linux command line" sans quote. Also see linuxcommand.org/tlcl.php
    • SomeAmbigiousUserName
      SomeAmbigiousUserName over 9 years
      @user68186 because one book is always going to be more detailed then the next, I was hoping to find a recommended book that covers all bases instead of buying one, then finding there's a better one for the same price
    • user68186
      user68186 over 9 years
      The buyers at Amazon rated this one highly. I have no personal knowledge. I just use the man command and the Google search.
  • SomeAmbigiousUserName
    SomeAmbigiousUserName over 9 years
    I know you can do that but a book that has examples and what situations you'd use them is a lot clearer for me.
  • αғsнιη
    αғsнιη over 9 years
    @TreyTaylor That manual pages is what writes in books :) You can use a for-loop to list all of them and make it a PDF format book for yourself. (if you don't like my answer, I'll delete it or I can keep it for someone else :) even from info coreutils <command> command you will see a lot of examples