| ▲ | grimgrin 2 hours ago | |
i love the mkdir example, so i’m going to exercise that muscle and see where it goes and yeah ^r works, though i still type a few chars and ^p till i get the match. history-search-backwards in your inputrc, iirc | ||
| ▲ | zzril an hour ago | parent [-] | |
That one was always worth its own function for me. ``` mkcd() { mkdir -p -- "$*" && cd -- "$*" } ``` | ||