Lars Schneider <larsxschneider@xxxxxxxxx> writes: > I think I addressed all issues from the v1 review (see interdiff below) > with one exception. The script still uses bash instead of sh. Something > about this does not work in sh: > --output >(sed "$(printf '1s/^\xef\xbb\xbf//')" >cat >&3) > > Does anyone know how to make this sh compatible? Making this runnable under any shell is not a goal; if your script does rely on that bash-ism, then leave it as-is and mark it with #!/bin/bash or somesuch. Thanks.