I have a bash script that goes like this :
# gets all relevant files in the directory
cp ../update_files/* ./transfer_dir
# copy the python scripts to that directory
cp ../tools/update_tool/* ./transfer_dir
# execute the python scripts
python ./transfer_dir/merge.py
Now the problem is that when I try to execute the python script, it seens that the "working directory" is ., and not ./transfer_dir and I can't file the update_files copied earlier
How can I change that? I don't want to modify my python scripts too much since they are mostly location agnostic.
Use
cd
: