LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-30-2010, 12:49 PM   #1
worm5252
Member
 
Registered: Oct 2004
Location: Atlanta
Distribution: CentOS, RHEL, HP-UX, OS X
Posts: 567

Rep: Reputation: 57
Capture a list of all installed commands


if I open a terminal and hit [TAB] [TAB] it will display "Display all 2583 possibilities? (y or n) ". If I press y is there a way to capture the output and write it to a file?

Not like it is a command so I can't just use a redirect to a file? If not I guess I could just do an ls on all locations of $PATH and capture that to a file.
 
Old 01-30-2010, 04:12 PM   #2
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
man script


Will do (in a not so elegant manner) do what you want.
 
Old 01-30-2010, 04:34 PM   #3
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
I'm not used to programmable tab completion and maybe there is a better way, but you can obtain that list using
Code:
compgen -c "" | sort -u
where -c is meant to generate a completion list using only command names and "" is the null string... the same you DID NOT type before [TAB][TAB]...
 
Old 01-30-2010, 04:43 PM   #4
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally Posted by colucix View Post
I'm not used to programmable tab completion and maybe there is a better way, but you can obtain that list using
Code:
compgen -c "" | sort -u
where -c is meant to generate a completion list using only command names and "" is the null string... the same you DID NOT type before [TAB][TAB]...
On my system that lists ANYTHING with an x-flag, that
includes directories....


Cheers,
Tink
 
Old 01-30-2010, 04:51 PM   #5
minrich
Member
 
Registered: Aug 2003
Location: Isles of Man & Wight
Distribution: See signature
Posts: 548

Rep: Reputation: 40
I think that you will find that all the 'commands' listed equate to all the files in /bin and /usr/bin - I believe that these are determined by your path setting. Type $PATH in a terminal/console to see what your bash settings are. Therefore, a simple listing to a text file will accomplish what you appear to want, try:
Quote:
ls /usr/bin > commands.txt
 
Old 01-30-2010, 05:00 PM   #6
worm5252
Member
 
Registered: Oct 2004
Location: Atlanta
Distribution: CentOS, RHEL, HP-UX, OS X
Posts: 567

Original Poster
Rep: Reputation: 57
[TAB] [TAB] does list all the files in my $PATH. So I guess the best way is to just do like you said minrich and redirect the ls to somewhere.
 
Old 01-30-2010, 05:14 PM   #7
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Quote:
Originally Posted by Tinkster View Post
On my system that lists ANYTHING with an x-flag, that includes directories....
That's strange. The -c option should limit the result to command names. I've just tried the compgen command on different systems (OpenSuse, CentOS, Vectorlinux) and it gives the list of commands only. Hmmm... I should investigate...

Last edited by colucix; 01-31-2010 at 03:09 AM. Reason: It happens.
 
Old 01-30-2010, 05:26 PM   #8
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
More like
Code:
for i in $(echo $PATH|tr -d '.'| tr ':' ' '); do find $i -type f  ; done
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
List of Solaris commands? Marty21 Solaris / OpenSolaris 3 02-02-2009 08:05 PM
Help with RPM Commands - See a whole list pxumsgdxpcvjm Linux - Newbie 3 03-05-2006 03:04 AM
list of commands eric2000 Linux - Newbie 6 01-06-2006 02:17 AM
bash - execute commands on a remote machine capture results, etc dkrysak Programming 1 11-18-2005 01:50 PM
list of commands JROCK1980 Linux - General 2 02-16-2004 06:07 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration