我的目录结构:
root\bin\run.sh \\main shell file i am trying to write
root\folder1\script.py
root\folder2\script2.py
So, I want to execute run.sh (from anywhere).. and then first execute
python root\folder1\script.py
python root\folder2/script2.py
但是,我不想给出完整的路径..因为这可能会改变(取决于哪个系统,我正在运行代码......)但是run.sh script.py和script2之间的相对路径。 py不会改变.. 那么,我如何在shell中做到这一点?