View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Keith Willshaw Keith Willshaw is offline
external usenet poster
 
Posts: 170
Default Merging or Adding two .csv files


"Joe" wrote in message
...
Can I use wild card in shell command?

Like copy c:\*.txt, c:\dest.txt

Thanks.
Joe


If they are ascii files you can always use type
and pipe the output to a filecat /?


C:\type c:\*.txt fred.txt

Keith