Browse Source

[enhancement] mk -> mkd; added -p flag

pull/1/head
Muthu Kumar 6 years ago
committed by GitHub
parent
commit
635b38e4e0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      scripts/mkr.sh

6
scripts/mkr.sh

@ -32,8 +32,8 @@ alias install="sudo apt-get install"
## mk
## Usage: mk <dir>
## Makes a new directory and enters it
mk () {
mkdir "$1"
mkd () {
mkdir -p "$1"
cd "$_"
}
@ -132,4 +132,4 @@ mkr-update () {
curl -s https://raw.githubusercontent.com/MKRhere/wiki/master/scripts/mkr.sh -o ~/.mkr/mkr.sh
source ~/.mkr/mkr.sh
echo "[mkr.sh] Done updating script! Enjoy."
}
}

Loading…
Cancel
Save