Advertisement
Guest User

Untitled

a guest
Jan 14th, 2019
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. Linux:
  2. for i in {1..3800}; do cp Sample.mp3 "M$i.mp3"; done
  3.  
  4. DOS:
  5. for /l %A in (1,1,3800) do copy "Sample.mp3" "M%A.mp3"
  6.  
  7. Windows PowerShell:
  8. 1..3800 | % { copy-Item "Sample.mp3" "M$_.mp3"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement