Hacker News new | ask | show | jobs
by makeworld 1792 days ago
"cd -" changes to the previous working directory. Your function calls cd multiple times, so calling "cd -" won't bring the user to the previous working directory they expect. ozym4nd145's function only calls cd once.
1 comments

Aah, now I see. Awesome, I'll try that out. Thank you.