-1
I am developing a process in which it will be necessary to make a call in a script that is in another directory.
I have a script that is in the directory /home/ant/tests/mobile/myphone.sh
If I needed to make that flow in the shell I would:
FORM_PATH="/home/ant/tests/mobile/" CHECK_CMP="$FORM_PATH/myphone.sh"
How could I make that call in python?
Thank you