Hacker News new | ask | show | jobs
by rnestler 1886 days ago
I hava a mkcd alias to create a directory and changing into it.
1 comments

I have one called `enter`.

    enter () 
    { 
        mkdir -p "$1";
        cd "$1"
    }