I am calling a python file result.py from a script file result.sh. Both the files are present in different folders. How can I provide an absolute path?
My result.sh code:
if [[ $1 = "Census" ]]; then
python -u result.py --model_name mlp --dataset census
Location of python file: C:/Users/ABC/Desktop/Python/result.py
Location of script file: F:/Script/result.sh