I think I have a pretty good developer env going on, but I’m always looking for more things I haven’t thought of.

So does anybody have any uber useful, or fun, or just a general favorite shell/terminal setup or tool?

  • z3rOR0ne
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    8 days ago

    Making a directory and then immediately navigating into it is such a common occurrence, eventually on stackoverflow I found this:

    alias mkcd='{ IFS= read -r d && mkdir "$d" && cd "$d"; } <<<'