Created
April 5, 2013 01:31
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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