I used 'change directory' in my shell script (bash)
#!/bin/bash
alias mycd='cd some_place'
mycd
pwd
pwd
prints some_place
correctly, but after the script finished my current working directory doesn't change.
Is it possible to change my path by script?