updated 'mkd()' one-liner

- signed-off-by: trimstray <trimstray@gmail.com>
This commit is contained in:
trimstray 2019-01-17 16:12:50 +01:00
parent c2ac88a6cd
commit 29eb59c52a

View File

@ -1019,7 +1019,7 @@ vim scp://user@host//etc/fstab
###### Create a directory and change into it at the same time
```bash
mkd () { mkdir -p "$@" && cd "$@"; }
mkd() { mkdir -p "$@" && cd "$@"; }
```
###### Convert uppercase files to lowercase files