12 lines
205 B
Markdown
12 lines
205 B
Markdown
# Notes related to Powershell
|
|
|
|
|
|
|
|
## Create multiple folders
|
|
|
|
### Create multiple folders named Season 01 through Season 25 ###
|
|
|
|
```
|
|
1..25|%{md('M:\TV Series\!New\One Piece (1999)\Season {00:d2}'-f$_)}
|
|
```
|