Re: which paradigms does bash support

2018-03-14 Thread Marc Weber
lse && true && true (only first will be run) * signal handlers and clreanup hooks * hashes, lists, but syntax is wired (IMHO) => can you return lists? ... -> so for anything complex use a real language, please. Marc Weber

Re: feature request: more complete set -e

2009-06-30 Thread Marc Weber
er( l : matches l 'some regex') and you'll get an exception if the file isn't found. So I have to learn those details or use another language. Thank you for taking the time discussing this topic here. I learned a lot. Marc Weber

Re: feature request: more complete set -e

2009-06-28 Thread Marc Weber
On Thu, Jun 25, 2009 at 07:33:18PM -0400, Chet Ramey wrote: > Marc Weber wrote: > > > This is my point: I'd like to tell bash: Whenever running an executable > > assume that if it returns a non zero exit status that's a unforeseen > > exception. And in this case

Re: feature request: more complete set -e

2009-06-24 Thread Marc Weber
On Tue, Jun 23, 2009 at 09:00:10AM -0400, Chet Ramey wrote: > Marc Weber wrote: > > Hi, > > > > I stumbled about another bash problem today: > > > > for item in $(false); > > echo $item > > done || { echo for failed; } > > > > doe

feature request: more complete set -e

2009-06-22 Thread Marc Weber
eeing more strict? Sincerly Marc Weber