About 6,560 results
Open links in new tab
  1. How do I diff two text files in Windows Powershell?

    I have two text files and want to find the differences between them using Windows Powershell. Is there something similar to the Unix diff tool available? Or is there another other way I haven't

  2. Powershell - compare files and content - Server Fault

    Sep 5, 2016 · 0 This question already has answers here: How do I diff two text files in Windows Powershell? (10 answers)

  3. filesystems - How to compare two directories (including sub directories ...

    Feb 9, 2010 · Are you wanting to know if there are different files between the two directories or if the contents of the files are different?

  4. How to compare differences between directories (linux)

    Aug 26, 2009 · 35 I have two directories - one from earlier backup and second from newest backup. How do i compare what changes were made to files in directory from newest backup on Linux?

  5. How do I diff two folders in Windows Powershell? - Server Fault

    Aug 19, 2013 · If I put the get-childitem in a variable not only it takes an insane amount of time but it also tries to download all the files from the Onedrive. is there a better way to compare two folders on the fly?

  6. Compare data of two offline Windows servers (via file hash?)

    Jul 23, 2019 · It generates a text file containing a list of files in the target directory (including subdirectories) and their hashes. You can then compare the two text files (using, e.g., windiff) to …

  7. scripting - Comparing 2 CSV files in powershell exporting difference to ...

    May 6, 2014 · Instead of attempting to parse the errors from the failed DNS results we're going to compare the orginal IP address txt file to the output file of the DNS #By comparing those two files we …

  8. Tcl code to compare between two files (specific lies)

    Sep 20, 2022 · Tcl code to compare between two files (specific lies) Ask Question Asked 3 years, 2 months ago Modified 2 years, 10 months ago

  9. How to test if two given files are identical? - Server Fault

    Mar 10, 2015 · This is how you can tell the difference between two files if diff file1 file2 > /dev/null then echo "No difference" else echo "Difference" fi To fix up YOUR problem (in which you are comparing …

  10. How to compare to text files using command line tools, under windows

    The quickest way would be to open a command prompt then type fc textfile1.txt textfile2.txt > differences.txt in the location of the files. Alternativly you could add this line in a .bat file.