3 lines
110 B
Raku
3 lines
110 B
Raku
for [\,] $*SPEC.splitdir("../path/to/dir") -> @path {
|
|
mkdir $_ unless .e given $*SPEC.catdir(@path).IO;
|
|
}
|