我有一个问题, <() 不适用于自动配置中的 install-sh 它给了我这个错误
./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.
虽然这工作正常
install -m 755 <(sed -e 's/string-to-replace/string-for-replace/g' somefile.txt) result.txt