Re: Issues with set -e and subshell

2009-10-30 Thread Chet Ramey
Mario TRENTINI wrote: > Bash Version: 3.2 > Patch Level: 39 > Release Status: release > > Description: Using set -e with subshell gives unexpected results > > Repeat-By: > > Hello, > > First issue : > > # The following works fine : end is displayed > ( set -e ; echo Start ; false ; echo end )

Re: Documentation issue: Increments in brace expansion

2009-10-30 Thread Chet Ramey
Jan Schampera wrote: > Good morning, > > http://www.gnu.org/software/bash/manual/bashref.html#Brace-Expansion > > The brace expansion increment syntax is shown wrong. > > OLD: > > A sequence expression takes the form {x..y[incr]}, where x and y are > either integers or single characters, and in

Documentation issue: Increments in brace expansion

2009-10-30 Thread Jan Schampera
Good morning, http://www.gnu.org/software/bash/manual/bashref.html#Brace-Expansion The brace expansion increment syntax is shown wrong. OLD: A sequence expression takes the form {x..y[incr]}, where x and y are either integers or single characters, and incr, an optional increment, is an integer.