Re: comparison inside [[]] is not numeric comparison?

2010-12-09 Thread Daniel Fleischman
>From "man bash" When used with [[, The < and > operators sort lexicographically using the current locale. You want (( and )): $ if (( 1000 > 200 )); then echo pass; else echo wierd; fi pass Daniel. On Fri, Nov 19, 2010 at 19:45, john.ruckstuhl wrote: > In bash, a comparison in

Re: Multiple Words on Bash Programmable Auto Completion

2008-10-02 Thread Daniel Fleischman
Thank you, that's exactly what I wanted. On Thu, Oct 2, 2008 at 09:16, Chet Ramey <[EMAIL PROTECTED]> wrote: > > Description: > > I don't know if this is a bug or not, but it has to do with > programmable > > auto completion. Whenever the options have multiple words I don't get > what I > > w

Multiple Words on Bash Programmable Auto Completion

2008-10-01 Thread Daniel Fleischman
when showing the completion options (COMPREPLY)? If so, please, tell me how. If not, well, I've found a bug :P Thank you in advance, Daniel Fleischman. Repeat-By: 1) Type the "f" function 2) write "lala a" on bash