6 lines
123 B
Bash
6 lines
123 B
Bash
# go to saved path if there is one
|
|
if [[ -f ~/.current_path~ ]]; then
|
|
cd `cat ~/.current_path~`
|
|
rm ~/.current_path~
|
|
fi
|