Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Bash script to find difference between two files !

  • Public
By Rahul Nayak 773 days ago
#lines which are exist only in file2: grep -Fxvf file1 file2 > file3 #lines which are exist only in file1: grep -Fxvf file2 file1 > file3 #lines which are exist in both files: grep -Fxf file1 file2 > file3