1 2 3 4 5 6
#!/bin/bash find . -type f -iname '*.rs' -not -path './target/*' -print0 \ | wc -l --files0-from=- \ | sort -nr \ | head -n 20