Hacker News new | ask | show | jobs
by sandreas 1789 days ago
Mmh, what do you mean with "preserve"...? `cd -` works like a charm for me.
1 comments

"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.
Aah, now I see. Awesome, I'll try that out. Thank you.