RosettaCodeData/Task/Make-directory-path/UNIX-Shell/make-directory-path.sh

2 lines
37 B
Bash

function mkdirp() { mkdir -p "$1"; }