Is it possible to get, using Bash, a list of commands starting with a certain string?
I would like to get what is printed hitting <tab> twice after typing the start of the command and, for example, store it inside a variable.
|
|
|
You should be able to use the compgen command, like so:
For example, "compgen -A builtin l" returns
You can use other keywords in place of "builtin" to get other types of completion. Builtin gives you shell builtin commands. "File" gives you local filenames, etc. Here's a list of actions (from the BASH man page for complete which uses compgen):
|
|||||
|
|
A fun way to do this is to hit As an example, type this:
Then hit
You can read more about this in |
|||
|
|
|
If you want exactly how bash would complete
compgen completes using the same rules bash uses when tabbing. |
|||
|
|
|
JacobM's answer is great. For doing it manually, i would use something like this:
The test before the output makes sure only executable, regular files are shown. The above shows all commands starting with |
|||
|
|
|
Iterate over the $PATH variable and do To get it exactly equivalent, you would need to filter out only executable files and sort by name (should be pretty easy with ls flags and the sort command). |
|||
|
|
|
What is listed when you hit are the binary files in your PATH that start with that string. So, if your PATH variable contains: PATH=/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/java/bin:/usr/lib/java/jre/bin:/usr/lib/qt/bin:/usr/share/texmf/bin:. Bash will look in each of those directories to show you the suggestions once you hit . Thus, to get the list of commands starting with "ls" into a variable you could do: MYVAR=$(ls /usr/local/bin/ls* /usr/bin/ls* /bin/ls*) Naturally you could add all the other directories I haven't. |
|||
|
|
Interesting, I didn't know about
Save that script somewhere in your
|
|||
|
|
|
Just for fun, another manual variant:
where [tested on Mac OS X] Use the
will pick up files you have permission for by virtue of owning them. I don't see a general way to get all those you can execute by virtue of group affiliation without a lot more coding. |
||||
|
|