This error may be encountered when running a Job on a Linux or Unix machine where the shell environment is not defined in the source of the Job.
In many cases the following may work for bash environments:
#!/bin/sh or #!/bin/bash
However, if these options are not working, the specific shell environment for the user can be found by running the following command in a terminal session:
echo $SHELL
Comments