I have files named like
longText1.ext
longText2.ext
....
I want to copies like...
longText1VerB.ext
longText2VerB.ext
....
From dos days I expect eh following to work...
What this makes is files named...
longText1.extVerB.ext
longText2.extVerB.ext
So the question is what can I do instead? This seems like it should be really simple.
I did run across but I did not see the solution there but it is at least somewhat illuminating.
longText1.ext
longText2.ext
....
I want to copies like...
longText1VerB.ext
longText2VerB.ext
....
From dos days I expect eh following to work...
Code:
copy *.ext *VerB.ext
longText1.extVerB.ext
longText2.extVerB.ext
So the question is what can I do instead? This seems like it should be really simple.
I did run across but I did not see the solution there but it is at least somewhat illuminating.