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