A simple shell utility that creates a directory and immediately changes into it.
The mkcd
function combines mkdir -p
and cd
into a single command:
- Creates the specified directory (and any parent directories if needed)
- Changes into the newly created directory