On Sun, Oct 7, 2018 at 6:38 AM Silvan Jegen <[email protected]> wrote: > * use "ls" instead of "find" in subshell
Don't do that. Use globs. https://mywiki.wooledge.org/ParsingLs > +for testfile in $(ls *.test); do for testfile in *.test; do
On Sun, Oct 7, 2018 at 6:38 AM Silvan Jegen <[email protected]> wrote: > * use "ls" instead of "find" in subshell
Don't do that. Use globs. https://mywiki.wooledge.org/ParsingLs > +for testfile in $(ls *.test); do for testfile in *.test; do