Typo in german translation of "help exit"

2015-01-09 Thread killermoehre
Configuration Information [Automatically generated, do not change]: Machine: x86_64 OS: linux-gnu Compiler: gcc Compilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='x86_64' -DCONF_OSTYPE='linux-gnu' -DCONF_MACHTYPE='x86_64-unknown-linux-gnu' -DCONF_VENDOR='unknown' -DLOCALEDIR='/usr/share/local

Re: Typo in german translation of "help exit"

2015-01-09 Thread Chet Ramey
On 1/9/15 9:03 AM, killermoe...@gmx.net wrote: > > Bash Version: 4.3 > Patch Level: 30 > Release Status: release > > Description: > If you run "help exit" with german locale, you see the typo. Please contact the GNU Translation project with corrections; they are the clearinghouse. Than

using perl's gnu-readline interface, howto 'completion' & 'filter history'?

2015-01-09 Thread Linda Walsh
I have a little calculator interface that I use readline for. Imagine my surprise when I type 1+ and get a list of files to add to 1. Um... not ideal? I add a time/date stamp to each line typed in. (HISTTIMEFORMAT="%m%d@%H%M%S:") In bash when I scroll back, I don't the time entries, but I do in

Re: using perl's gnu-readline interface, howto 'completion' & 'filter history'?

2015-01-09 Thread Andreas Schwab
Linda Walsh writes: > I have a little calculator interface that I use readline for. > Imagine my surprise when I type 1+ and get a list of files > to add to 1. Um... not ideal? The default completion function is filename completion. If you want something different you need to write your own.

Re: using perl's gnu-readline interface, howto 'completion' & 'filter history'?

2015-01-09 Thread Linda Walsh
Andreas Schwab wrote: The default completion function is filename completion. If you want something different you need to write your own. --- Yes... so I look for a 'complete' function that I can call with my options (or to choose some set of supplied choices, like usernames or hostn

History event execution in command substition

2015-01-09 Thread Zigmund . Ozean
Configuration Information [Automatically generated, do not change]: Machine: x86_64 OS: linux-gnu Compiler: gcc Compilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='x86_64' -DCONF_OSTYPE='linux-gnu' -DCONF_MACHTYPE='x86_64-pc-linux-gnu' -DCONF_VENDOR='pc' -DLOCALEDIR='/usr/share/locale' -DPACKA

History event execution in command substition

2015-01-09 Thread Zigmund . Ozean
Configuration Information [Automatically generated, do not change]: Machine: x86_64 OS: linux-gnu Compiler: gcc Compilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='x86_64' -DCONF_OSTYPE='linux-gnu' -DCONF_MACHTYPE='x86_64-pc-linux-gnu' -DCONF_VENDOR='pc' -DLOCALEDIR='/usr/share/locale' -DPACKA

Re: using perl's gnu-readline interface, howto 'completion' & 'filter history'?

2015-01-09 Thread Chet Ramey
On 1/9/15 5:19 PM, Linda Walsh wrote: > > > Andreas Schwab wrote: >> >> The default completion function is filename completion. If you want >> something different you need to write your own. > --- > Yes... so I look for a 'complete' function that I > can call with my options (or to choose so

Re: using perl's gnu-readline interface, howto 'completion' & 'filter history'?

2015-01-09 Thread Linda Walsh
Thanks, it's not a high priority but it's something I want to find out how to do to upgrade the input-help if I ever get spare time and sufficient motivation...they both happen at the same time occasionally... so would be good for me to know where to start... Thanks! Chet Ramey wrote: You mig