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:
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.
There are 2 alternatives - vote for the best!
The biggest advantage of this over the functions is that it is portable.
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`.
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.
This command does not work if the directory has embedded space:
mcd "foo bar"To fix:
function md () { mkdir -p "$@" && cd "$@"; }
Thanks!
you are correct and I fixed it...
I would remove the redundant and bash specific "function" keyword. I use this in my .bashrc which I've commented on here:
http://www.pixelbeat.org/scripts/ls_color/
Done!
I usually like to use "function" because it aids interpreting what a function is. I don't have to notice the parens. But it is BASH specific... Liked your web site.
You may want to switch the second one to $_ instead of $@
md() { mkdir "$@" && cd "$_"; }That way if you want to add some options to mkdir, such as -p to make parents or -m to set mode, they'll get passed to mkdir without blowing up cd.