LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   linux commands (https://www.linuxquestions.org/questions/linux-newbie-8/linux-commands-250820/)

zexter 11-03-2004 07:08 PM

linux commands
 
is there a fairly good list of linux commands out there that tell you the command and then describe what the command does, sort of like a dictionary of linux commands?


-thanks in advance

bigrigdriver 11-03-2004 07:25 PM

Use google. Search on "linux commands". There are tons of files to choose from.
You can also use the man pages (read manual pages) to find out about a command. Example: suppose you want to find out about the options for tar. Open a terminal, and enter the command 'man tar' (without quotes) to display the man page for tar.

Tinkster 11-03-2004 07:41 PM

http://wiki.linuxquestions.org/wiki/Main_Page

Can be found in the links section on the right hand
side (together with a truckload of other sensible
links, one might add ;}) ...



Cheers,
Tink

LasseW 11-04-2004 09:56 AM

Try this command:

ls /bin | xargs whatis

The do the same for /sbin, /usr/bin and /usr/sbin. That should give you a fairly comprehensive list.

student04 11-04-2004 12:35 PM

this will tell you what a command does, if it is in that database
Code:

whatis <command>
this will tell you where commands are, if you have enough permissions to access them
Code:

whereis <command>
this will search for a command when you don't know the exact name
Code:

apropos <command>
this will pull up a manual (stated above)
Code:

man <command>
of course permission restricted users cannot use any commands located in /sbin, so just browse the contents in there. And of course google will be the biggest resource

ky-lab_rat 11-04-2004 02:37 PM

For what it's worth I bought this book and it's had most if not all of the little snippets I've been looking for. And for less then $10 you can't beat it.


Linux Pocket Guide (it even covers Fedora distro)

Linux Pocket Guide


All times are GMT -5. The time now is 07:41 PM.