mkmk
mkmk is mkdir -p
and touch
.
Installation
```sh
TODO
```
Usage
```sh
touch aaa/bbb/ccc.txt
touch: aaa/bbb/ccc.txt: No such file or directory
but...
mkmk aaa/bbb/ccc.txt
A folder named "aaa/bbb" will be created, followed by a file named "ccc.txt".
Equivalent to:
mkdir -p aaa/bbb && touch aaa/bbb/ccc.txt
```