I have 3 sh scripts in 3 different directories.
Instead of going into each directory and executing each script I wanted to trigger all 3 scripts from one central script (located in the superfolder above).
I tried using /bin/bash /path/to/script but this would assume the superfolder location as the location to work in.
Therefore I tried going into each folder first cd folder1 before execution but that would not work either.
I just want to trigger those 3 scripts without changing its local environment
cd folder1? There is no difference between executing that command in the parent script and changing to the folder in your interactive shell before starting the child manually, unless you have some sort of alias or wrapper around the built-incdcommand.