commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. 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.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
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:
I find that I create a directory and then cd into that directory quite often. I found this little function on the internets somewhere and thought I'd share it. Just copy-paste it into you ~/.bash_profile and then `source ~/.bash_profile`.
There are 3 alternatives - vote for the best!
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.
combines mkdir and cd
added quotes around $_, thanx to flatcap!
# put this in your .bashrc
mkgo (){
mkdir $1 && cd $1
}
If you can do better, submit your command here.
You must be signed in to comment.
I think there's a mistake, it should be:
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...
the point is that you want to create a directory AND move into that directory at the same time.
giving mcd two arguments is kind of like saying you want to create two directories AND move into two directories in the same command. of course, moving into two directories simultaneously is nonsense.
but you have a good point, which ought to be taken into consideration if you're going to use this function.
i could see, perhaps, adding another test to the function to look for the presence of a second argument and then displaying a "usage" message.
The below would do that jod :
md () { mkdir -p "$1" && cd "$1"; }