On Sun, Oct 7, 2018 at 6:38 AM Silvan Jegen <s.jegen_AT_gmail.com> 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
Received on Sun Oct 07 2018 - 18:47:39 CEST