One of my ```install.sh``` starts nvim and that reads the other ```install.sh``` paths from stdin. This prevents them from running. I've solved this by using ```find```'s ```exec``` to run the ```install.sh```'s: ``` find . -name install.sh -exec sh -c "{}" \; ```