We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One of my install.sh starts nvim and that reads the other install.sh paths from stdin. This prevents them from running.
install.sh
I've solved this by using find's exec to run the install.sh's:
find
exec
find . -name install.sh -exec sh -c "{}" \;
The text was updated successfully, but these errors were encountered:
I had the same issue!
Sorry, something went wrong.
No branches or pull requests
One of my
install.sh
starts nvim and that reads the otherinstall.sh
paths from stdin. This prevents them from running.I've solved this by using
find
'sexec
to run theinstall.sh
's:The text was updated successfully, but these errors were encountered: