Share this postMystic’s SubstackGetting Word Count in Java Resource Bundle Properties FilesCopy linkFacebookEmailNotesMoreGetting Word Count in Java Resource Bundle Properties FilesMysticApr 20, 2006Share this postMystic’s SubstackGetting Word Count in Java Resource Bundle Properties FilesCopy linkFacebookEmailNotesMoreShareWith 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.