[ast-users] .sh.match not set by case statements?

2015-10-19 Thread Aaron Davies
on AJM 93u+ 2012-08-01 typeset -a .sh.match=(foo o) typeset -a .sh.match=(foo o) > -- Aaron Davies aaron.dav...@gmail.com ___ ast-users mailing list ast-users@lists.research.att.com http://lists.research.att.com/mailman/listinfo/ast-users

[ast-users] "next" array element doesn't reset to 0 after last element is unset

2015-09-20 Thread Aaron Davies
1) > imao it shouldn't be stateful like this -- Aaron Davies aaron.dav...@gmail.com ___ ast-users mailing list ast-users@lists.research.att.com http://lists.research.att.com/mailman/listinfo/ast-users

[ast-users] ksh93v?

2015-09-20 Thread Aaron Davies
any idea when ksh93v will ship? i'm eagerly awaiting read -d '', which is currently the only reason i have for writing anything in bash (i have to deal with a lot of trees of arbitrarily-named files, so find -print0|while IFS= read -rd '' is essential to many of my ad-hoc scripts) -- Aaron

Re: [ast-users] 0-filled .. ranges?

2015-09-19 Thread Aaron Davies
On Sep 18, 2015, at 5:07 AM, Clark Wang <dearv...@gmail.com> wrote: > On Fri, Sep 18, 2015 at 12:13 PM, Aaron Davies <aaron.dav...@gmail.com> wrote: > >> any plans to support 0-filled .. ranges? >> >> recent bash/zsh: >> >> $ echo {1..10} >&g

[ast-users] 0-filled .. ranges?

2015-09-17 Thread Aaron Davies
any plans to support 0-filled .. ranges? recent bash/zsh: $ echo {1..10} 1 2 3 4 5 6 7 8 9 10 $ echo {01..10} 01 02 03 04 05 06 07 08 09 10 $ ksh93u+: $ echo {1..10} 1 2 3 4 5 6 7 8 9 10 $ echo {01..10} 1 2 3 4 5 6 7 8 9 10 $ -- Aaron Davies aaron.dav...@gmail.com

[ast-users] 93u+ errexit noclobber for loop bug

2014-09-22 Thread Aaron Davies
print 'never reached?' print 4 /tmp/foo print 'never reached!' $ ./eCfor.ksh Version AJM 93u+ 2012-08-01 ./eCfor.ksh: line 3: /tmp/foo: file already exists [File exists] never reached? ./eCfor.ksh[6]: /tmp/foo: file already exists [File exists] $ -- Aaron Davies aaron.dav...@gmail.com

[ast-users] 93u+ showme bug

2014-09-22 Thread Aaron Davies
the showme preview of a command that redirects both stdout stderr is incorrect in 93u+ $ print $KSH_VERSION Version AJM 93u+ 2012-08-01 $ set -o showme $ ;ls + ls $ ;ls a + ls + 1 a $ ;ls 2b + ls + 2 b $ ;ls a 2b + ls + 1 a $ -- Aaron Davies aaron.dav...@gmail.com

[ast-users] segfault in child shell--debugging steps?

2013-01-02 Thread Aaron Davies
valgrind to verify exactly what's going wrong, and then submit the logs here. is this a reasonable approach? anything else i should do? -- Aaron Davies aaron.dav...@gmail.com ___ ast-users mailing list ast-users@lists.research.att.com http