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

2 lines
37 B
Bash
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function mkdirp() { mkdir -p "$1"; }