Every time you run a command with RunCommand you get a default environment. So just running a cd command is useless.
Try this as command "cd /home; pwd"
You can seperate commands with a ";".
This is also possible "cd /home && pwd". The pwd cmd is only executed if the cd command was successfull.
Try this as command "cd /home; pwd"
You can seperate commands with a ";".
This is also possible "cd /home && pwd". The pwd cmd is only executed if the cd command was successfull.