I need to compare two csv files in windows7. How can I proceed to achieve this. I want to see the differences in both the files , like we can use tkdiff in Linux.
Suggestion:
cmd
and press Enter to open a cd C:\path\to\your\directory
to reach the location of the two CSV files Tip: To paste a copied path from clipboard into DOS terminal cmd window, you can either (1) right-click on terminal window, or (2) press Shift+Insert.
fc filename1.csv filename2.csv > outfile.txt
(fc
stands for "file compare").outfile.txt
located in the same folder. If outfile.txt
doesn't exist, it will be created automatically.