I am right now running a bash script in which i need to change my directory and execute a script from the changed directory.
I want to change my folder to myfolder and run script.sh into that particular folder.
Any way to do that in Bash?
I have already tried
cd myfolder
./script.sh
But that does not work.