mks - Getting SED b command to respect ";" -
using mks sed windows, this;
type q:\temp\allrequired.m3u | sed -en "/\\curtain\\/!b;s_^.._q:_p"
fails with
sed: label ";s_^.._q:_p" not found in script
how can b command respect command separator ";" , hence act no label?
i'm aware there alternatives b in case. demo of b issue.
currently i'm using clumsy workaround:
type q:\temp\allrequired.m3u | sed -en -e "/\\curtain\\/!b" -e "s_^.._q:_p"
Comments
Post a Comment