In my scripts, I have a point where I want to copy ONLY the .csv files from my current build over to another folder. I currently have...
svn copy $repoName/*.csv $targetRepo
But I really didn't expect that to work. However, that is essentially what I want to accomplish. Does SVN have a way to copy only certain types of files? If not, what direction could I go in to possibly do that?
(Helpful?: this is all being done through automated Perl scripts.)