Re: Bash patches format

2018-06-03 Thread Siteshwar Vashisht
- Original Message - > From: "Marty E. Plummer" > To: "Chet Ramey" > Cc: bash-annou...@gnu.org, bug-bash@gnu.org > Sent: Thursday, May 31, 2018 3:08:57 AM > Subject: Re: Bash patches format > > Well, as I said, debian and fedora convert to -p1 unified, as current > debian packages usi

Re: Sequence Brace Expansion Crash

2018-06-03 Thread Chet Ramey
On 6/3/18 12:18 AM, Thomas Fischer wrote: > Bash Version: 4.4 > Patch Level: 19 > Release Status: release > > Description: > I was testing brace expansion, and found that if bash uses too much memory > during the expansion, it will simply be killed. > > Repeat-By: > echo {a..z}{a..z}{a..z}{a..z}

Re: Bash don't interpret ~ path with multiple options.

2018-06-03 Thread Chet Ramey
On 6/2/18 10:08 PM, Jungsub Shin wrote: > When i try mount aufs, i find some problem with bash. > > # mount -o remount,append=~/test_aufs/ro1=ro+wh ~/test_aufs/mount > > mount failed with ~/test_aufs/ro1 path isn't exist message. > So i try to debug with strace and i find out bash don't replace ~

Re: Bash don't interpret ~ path with multiple options.

2018-06-03 Thread L A Walsh
Bash will only replace '~' when it has a space before it and it is not in quotes. It also won't expand '~' if it has special characters in it. In your lines, the '~' after the equal won't be replaced but the one at the end should be. Jungsub Shin wrote: When i try mount aufs, i find some

Sequence Brace Expansion Crash

2018-06-03 Thread Thomas Fischer
From: thomas To: bug-bash@gnu.org Subject: Sequence Brace Expansion Crash 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

Bash don't interpret ~ path with multiple options.

2018-06-03 Thread Jungsub Shin
When i try mount aufs, i find some problem with bash. # mount -o remount,append=~/test_aufs/ro1=ro+wh ~/test_aufs/mount mount failed with ~/test_aufs/ro1 path isn't exist message. So i try to debug with strace and i find out bash don't replace ~ path to absolute path. So i try again with split o