This commit is contained in:
2026-03-20 18:53:57 +01:00
parent f92be81f65
commit b826d362f8
2 changed files with 18 additions and 0 deletions

11
Powershell/Notes.md Normal file
View File

@@ -0,0 +1,11 @@
# 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$_)}
```