views:

57

answers:

1

Given two files (in this case, largish CSV files), what's the most efficient way in Powershell to determine if their content differs?

+2  A: 

there is a dos command which will do it

comp.exe 1.txt 2.txt
Iain
Okay, that works with `echo n | comp 1.txt 2.txt` Thanks!
bill weaver