mkmk 0.1.0

`mkdir -p` and `touch`
Documentation

mkmk

mkmk is mkdir -p and touch.

Installation

# TODO

Usage

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