LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   complete linux commands list (https://www.linuxquestions.org/questions/programming-9/complete-linux-commands-list-527506/)

kalyanofb 02-11-2007 03:21 AM

complete linux commands list
 
I want to create a txt file which contains all linux (suse) commands list (only command names) only.

The list will be like this:

ls
mkdir
man
grep
...
..
.

Please help me to get this.

M. KALYANA RAMAN.

colucix 02-11-2007 03:56 AM

You have already posted this question, here. Did the answers not satisfy you? ;) Anyway, if you are looking for the very basic linux command, you can do:
Code:

cd /bin
ls -1 > /path/to/any/dir/command_list.txt

where /path/to/any/dir must be substituted by a real path on your system, that is the place where you want to save the file. For a more complete command list, I think the answers to your previous post are fine!

matthewg42 02-11-2007 10:15 AM

See also this thread


All times are GMT -5. The time now is 04:30 AM.