How long did I do "mkdir blah\ncd blah" until I finally wrote this simple little function?
I'm thinking it should just be a quasi-standard, like `ll`.
function mcd {
#mkdir & cd
[[ $1 ]] && mkdir "$1" && cd "$1"
}
How long did I do "mkdir blah\ncd blah" until I finally wrote this simple little function?
I'm thinking it should just be a quasi-standard, like `ll`.
function mcd {
#mkdir & cd
[[ $1 ]] && mkdir "$1" && cd "$1"
}
Fair, it's just that typing "!$" takes more precision.
Trying to remember what it was like to administer/secure 100+ servers.
I probably just stuck with vanilla a lot, too. It also gave me an appreciation for vanilla ksh (ksh88, even!) and vanilla vi/nvi.
@eltheanine @jiminycricket @sotolf
I think that's a `set -o emacs` thing that I'm too `set -o vi` to understand. ^___^