# 1.sh
echo
cd ~ # cd to home dir
ls # list the directory, proving what dir we are in
echo
./1.sh # trying to a run a script that is in the 'sh' dir
# the script cannot be found because we are not in that dir
exit 0
# after the script ends we are back in the 'sh'
# without actually changeing back to it in the script
# How do I stay in the dir I changed to in line 3?