12 lines
205 B
Markdown
12 lines
205 B
Markdown
# Notes related to Powershell
|
|
|
|
|
|
|
|
## Create multiple folders
|
|
|
|
### Create 25 folders named Season 1 through Season 25 ###
|
|
|
|
```
|
|
1..25|%{md('C:\qBittorrent\Finished\TV Series\Futurama\Season {0:d2}'-f$_)}
|
|
```
|