On 12/2/19 9:38 PM, Andreas Kusalananda Kähäri wrote:>      for dirpath do
>          command mkdir -p "$dirpath" || return
>      done
It is very sad that the 'do' is not optional (non-backwards compatibility breaking feature request!), and it has to be the start of the next commandline (after ';' or the start of a new line), so:

    for dirpath
    do command mkdir -p "$dirpath" || return
    done

Peter

Reply via email to