diff - Difference between files skipping useless data -


let's have 2 files containing xml, , want search difference in files, looking @ tags, skipping others...

example:

file1

<xml>    <key>key1</key>  <value>value1</value>  <useless_tag>something</useless_tag> </xml> 

file2

<xml>    <key>key1</key>  <value>value2</value>  <useless_tag>something_else</useless_tag> </xml> 

so i'd point out 2 files different because of content in "value" tag, , not 1 in "useless_tag".

i'd stuff recursively inside multilevel folders...

i'm on windows , debian...

is there way can that?

thanks all


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -