cd /lib/firmware ( find -name '*.xz' -exec xzcat {} \; ; find -type f -a \! -name '*.xz' -a -exec cat {} \; ) | rot13 | grep -aEo '\w+' | awk '{print length, $0 }' | sort -nsru | head -20
Edit: The sort -u option hides words of the same length. Removing that option (and the head command) gives more results, but nothing that interesting.
Edit: The sort -u option hides words of the same length. Removing that option (and the head command) gives more results, but nothing that interesting.