
January 23rd, 2013, 09:50 AM
|
|
Still Learning
|
|
Join Date: Dec 2012
Location: Montreal, Canada
|
|
|
Look at http://stackoverflow.com/questions/918886/split-string-based-on-delimiter-in-bash. It will show you how to split the data in to arrays.
Once you do that it become an exercise in looping through both arrays and comparing elements. If you need help with that search for bash array tutorials or examples.
If you can use common Linux commands instead of just bash then you could split it like above or with perl or awk one liners (search for that there are lots), dump both results into a file, sort it, and uniq it.
|