Re: gettext feature request

2021-07-24 Thread Léa Gris
Le 24/07/2021 à 20:48, Chet Ramey écrivait : On 7/24/21 10:35 AM, Jean-Jacques Brucker wrote: Planning to use the /$"string/" feature in my bash code made me think too much : https://github.com/foopgp/bash-libs/tree/main/i18n ...what I really *love* to see in bash, is a /$'string'/ feature,

Re: gettext feature request

2021-07-24 Thread Jean-Jacques Brucker
Le 24/07/2021 à 20:48, Chet Ramey a écrit : So you want a translation feature without any further interpretation? Or one just without command substitution? Translation feature without any further interpretation. pros: * eases interoperability of *.mo files (eg: may then be shared with wi

Re: should bashdb be included w/bash?

2021-07-24 Thread Chet Ramey
On 7/24/21 3:09 PM, L A Walsh wrote: Not entirely sure how, but have been running 5.1.8(3)-release which seems fine...up until I wanted to single step a script... bashdb ...and saw /usr/share/bashdb/command/set_sub/dollar0.sh: line 23: enable: dynamic loading not available (/tmp/rearrange_files

should bashdb be included w/bash?

2021-07-24 Thread L A Walsh
Not entirely sure how, but have been running 5.1.8(3)-release which seems fine...up until I wanted to single step a script... bashdb ...and saw /usr/share/bashdb/command/set_sub/dollar0.sh: line 23: enable: dynamic loading not available (/tmp/rearrange_files.sh:4): 4: shopt -s expand_aliases ba

Re: gettext feature request

2021-07-24 Thread Chet Ramey
On 7/24/21 10:35 AM, Jean-Jacques Brucker wrote: Planning to use the /$"string/" feature in my bash code made me think too much : https://github.com/foopgp/bash-libs/tree/main/i18n ...what I really *love* to see in bash, is a /$'string'/ feature, which doesn't parse any «`» or «$» character

Re: gettext feature request

2021-07-24 Thread Greg Wooledge
On Sat, Jul 24, 2021 at 04:35:30PM +0200, Jean-Jacques Brucker wrote: > Planning to use the /$"string/" feature in my bash code made me think too > much : https://github.com/foopgp/bash-libs/tree/main/i18n The security problem with $"..." is known. Unfortunately, Chet seems set on the idea that $

gettext feature request

2021-07-24 Thread Jean-Jacques Brucker
Planning to use the /$"string/" feature in my bash code made me think too much : https://github.com/foopgp/bash-libs/tree/main/i18n ...what I really *love* to see in bash, is a /$'string'/ feature, which doesn't parse any «`» or «$» characters. Did you already discuss about that ? Is ther