Process substitution not working with install-sh autoconfigure

48 Views Asked by At

I have an issue that <() is not working for install-sh from autoconfigure it gives me this error

./install-sh -m 755 <(sed -e 's/string-to-replace/string-for-replace/g' somefile.txt) result.txt
./install-sh: /dev/fd/63 does not exist.

While this works fine

install -m 755 <(sed -e 's/string-to-replace/string-for-replace/g' somefile.txt) result.txt
0

There are 0 best solutions below