Skip to content

Instantly share code, notes, and snippets.

@eddiepavkovic
Created April 14, 2016 18:55
Show Gist options
  • Save eddiepavkovic/f0a0fe312fde5baacbbad87d7e07af3a to your computer and use it in GitHub Desktop.
Save eddiepavkovic/f0a0fe312fde5baacbbad87d7e07af3a to your computer and use it in GitHub Desktop.
PowerShell quickly create 100 files
##
## Create 100 files quickly in powershell.
## Change range to create more files
##
( 0 .. 100 ) | % { Copy-Item .\testfile.txt .\testfile$_.txt }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment