Commit e8d582ab authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #977 from scialex/better-d

Make the 'd' alias only show the directories that can be cd'd to using the number aliases.
parents e3d426dc d693711f
......@@ -36,9 +36,9 @@ cd () {
alias md='mkdir -p'
alias rd=rmdir
alias d='dirs -v'
alias d='dirs -v | head -10'
# mkdir & cd to it
function mcd() {
mkdir -p "$1" && cd "$1";
}
\ No newline at end of file
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment