|
Re: List of commands in Ubuntu (Gnome) Terminal
On Thu, 29 Nov 2007 06:46:01 +0000, jellybean stonerfish wrote:
> On Wed, 28 Nov 2007 06:11:52 -0700, Phil Buchman wrote:
>
>>> find -L `echo $PATH | sed 's/:/ /g'` -perm /+x > command_list
>>
>> Thanks for the tip jellybean! I'll try this command later this morning!
>
> be sure to pay attention to the single quotes ' and backticks `
Even better, thanks to Chris Johnson....
find -L ${PATH//:/ } -perm /+x > command_list
|