Last active
February 19, 2019 03:42
-
-
Save markdon/0625dff8a27aac2ca9c7c7e85a492a83 to your computer and use it in GitHub Desktop.
Powershell Copy 9000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$NumArray = (1..9000) | |
ForEach | |
($number in $numArray) { | |
Copy-Item "C:\Users\mdonnellon\Pictures\9000\itsover9000.jpg" -Destination "C:\Users\mdonnellon\Pictures\9000\itsover9000_$number.jpg" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment