Created
October 16, 2020 16:39
-
-
Save artisanalcode/ff863060a38658c72f03b17df1469a2c to your computer and use it in GitHub Desktop.
Count lines on .properties 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
find . -type f -name "*.properties" -exec grep -H -c '[^[:space:]]' {} \; | sort -nr -t":" -k2 | awk -F: '{print $1; exit;}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment