Re: problems cross-compling bash-3.2

2007-08-29 Thread Christian Boon
Chet Ramey wrote: Christian Boon wrote: This is from aclocal.m4: AC_DEFUN(BASH_SYS_JOB_CONTROL_MISSING, [AC_REQUIRE([BASH_SYS_SIGNAL_VINTAGE]) AC_MSG_CHECKING(for presence of necessary job control definitions) AC_CACHE_VAL(bash_cv_job_control_missing, [AC_TRY_RUN([ #include #ifdef HAVE_SYS

RFE: brace expansion sequences should do zero padding [patch]

2007-08-29 Thread Martin von Gagern
Hi! Suppose you have a set of files numbered and those numbers zero padded. Of course you can list them using some magic with printf or some such, but I would really love a simple feature like this: cat x{000..123} to concatenate files x000 through x123, not x0 through x123 as bash currently doe

RFE: brace expansion sequences should do zero padding [patch]

2007-08-29 Thread Martin von Gagern
Hi! Suppose you have a set of files numbered and those numbers zero padded. Of course you can list them using some magic with printf or some such, but I would really love a simple feature like this: cat x{000..123} to concatenate files x000 through x123, not x0 through x123 as bash currently doe

Re: TAB strips wildcards

2007-08-29 Thread jidanni
EB> Have you installed a completion function? # su - nobody No directory, logging in with HOME=/ [EMAIL PROTECTED]:/$ #WHATEVER /tmp/logs/*/*/* access.log access.log [EMAIL PROTECTED]:/$ bind 'set show-all-if-ambiguous on' [EMAIL PROTECTED]:/$ #WHATEVER /tmp/logs/*/*/* access.log access.log [

Re: TAB strips wildcards

2007-08-29 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to [EMAIL PROTECTED] on 8/29/2007 5:34 PM: > Here is a true case of what happens when you hit TAB with a wildcard: > $ shar /tmp/logs/*/*/* > access.log access.log > $ shar /tmp/logs/ > Yes, it strips the wildcards! Have you installed a com

TAB strips wildcards

2007-08-29 Thread jidanni
Here is a true case of what happens when you hit TAB with a wildcard: $ shar /tmp/logs/*/*/* access.log access.log $ shar /tmp/logs/ Yes, it strips the wildcards!

Re: problems cross-compling bash-3.2

2007-08-29 Thread Chet Ramey
Christian Boon wrote: >> This is from aclocal.m4: >> >> AC_DEFUN(BASH_SYS_JOB_CONTROL_MISSING, >> [AC_REQUIRE([BASH_SYS_SIGNAL_VINTAGE]) >> AC_MSG_CHECKING(for presence of necessary job control definitions) >> AC_CACHE_VAL(bash_cv_job_control_missing, >> [AC_TRY_RUN([ >> #include >> #ifdef HAVE_S

Re: Help with script -- FIXED

2007-08-29 Thread t0nedef
Thank you all for your help, i figured out what the problem was and the script works perfectly now. It was the placement of my variables that caused it to mess up, also that syntax on the test fixed that part of the equation as well. Anyway, no more need to try and fix the wpa_helper script -- Vi