> 2010 x86_64 GNU/Linux
> Machine Type: x86_64-pc-linux-gnu
>
> Bash Version: 4.1
> Patch Level: 5
> Release Status: release
>
> Description:
> It seems that there is memory leak in brace expansion. The memory used by
> bash interpreter gets larger and larger when r
pc-linux-gnu
Bash Version: 4.1
Patch Level: 5
Release Status: release
Description:
It seems that there is memory leak in brace expansion. The memory used by
bash interpreter gets larger and larger when running this script:
#!/bin/bash
foo=bar.txt
while true
do
echo ${foo##*.}
done
Ho