How to get differences between two files using bash script
ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Heres an undoubtedly ugly bit of bash code to do it. Create a script with this as the contents,make it executable and call it with ./script_name file1 file2 as per your example.
TMP_F1=`mktemp` || exit 1 # create a temp file
cut -f4 -d" " file1 | sort >$TMP_F1 # cut the 4th field from file1, sort
comm -3 $TMP_F1 file2 # show all lines not appearing in both files
rm $TMP_F1
if file2 is also not sorted:
Code:
TMP_F1=`mktemp` || exit 1 # create a temp file
TMP_F2=`mktemp` || exit 1 # create a second temp file
cut -f4 -d" " file1 | sort >$TMP_F1 # cut the 4th field from file1, sort
sort file2 >$TMP_F2
comm -3 $TMP_F1 $TMP_F2 # show all lines not appearing in both files
rm $TMP_F1 $TMP_F2
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
Advertisement
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Click Here to receive a complimentary subscription courtesy of LQ.