I have to follow instructions for a Java project but know nothing about Terminal.
I basically created what seems to be a path by typing cd /'path'
which leads to a folder.
In this folder is located a file I need to execute a bash command on bash updatemcp.sh
.
The file only contains:
#!/bin/bash
./runtime/updatemcp.py "$@"
When I run it with the dot at the beginning of the path it outputs this: env: python2: No such file or directory
However whenever I execute the command without the dot at the beginning of the second line of the file it outputs this: updatemcp.sh: line 2: /runtime/updatemcp.py: No such file or directory
when I'm 100% sure there is a file called updatemcp.py here...
The runtime folder is in the folder is contained in the dc 'path'
folder
Thanks in advance