Bash: mkd -> md.

This commit is contained in:
Artem Sapegin 2012-11-01 15:27:12 +04:00
parent 1ece0b4789
commit 02574be937
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# Create a new directory and enter it
function mkd() {
function md() {
mkdir -p "$@" && cd "$@"
}