Skip to content

Instantly share code, notes, and snippets.

@davidvanvickle
Created April 5, 2013 01:31
Show Gist options
  • Save davidvanvickle/5315920 to your computer and use it in GitHub Desktop.
Save davidvanvickle/5315920 to your computer and use it in GitHub Desktop.
get all the values for the xml attribute "font_name" from the XDT files
# get all the values for the xml attribute "font_name" from the XDT files
find . -name "*.xdt" -print -exec awk -v RS='"' '/font_name=$/{getline;print}' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment