this post was submitted on 11 Sep 2024
13 points (100.0% liked)

Ask Programming

74 readers
2 users here now

founded 2 years ago
MODERATORS
 

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?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 6 points 1 week ago* (last edited 1 week 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"; } <<<'