user@home:~$ mcd newdirectory user@home:newdirectory $
The biggest advantage of this over the functions is that it is portable.
How often do you make a directory (or series of directories) and then change into it to do whatever? 99% of the time that is what I do. This BASH function 'md' will make the directory path then immediately change to the new directory. By using the 'mkdir -p' switch, the intermediate directories are created as well if they do not exist. Show Sample Output
combines mkdir and cd added quotes around $_, thanx to flatcap! Show Sample Output
# put this in your .bashrc mkgo (){ mkdir $1 && cd $1 } Show Sample Output
Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?
You must be signed in to comment.
commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
function mcd() { [ -n "$1" ] && mkdir -p "$1" && cd "$1"; }
because other wise when you type "mcd blah test" it creates /blah and /test and goes into /blah. But it depends if that was the intended behavior or not...