Getting Word Count in Java Resource Bundle Properties FilesMysticApr 20, 2006ShareWith a little help from freenode folks in ##java and #awk .. I've got a one liner which will give you a word count for your resource bundle files:grep -vE '^#' YourResourceBundle.properties | cut -d = -f 2 | wc -wwhew.