I'm trying to log certain system commands while a script is running. For example:
Action() {
// .....
system("ipconfig > test_output.txt");
// .....
}
When Vugen runs the script, it places the output within the script folder.
However, the output seems to be missing when the Controller runs the script within a scenario. It's neither in the results folder nor in the script folder.
Where does the Controller place the output of system commands?