blob: e4f4def5bba73fb4ed09ae2a3ab07399a4c5f084 [file] [log] [blame]
#!/bin/bash
# Prints the number of lines in the repository.
git ls-files -z | xargs -0 wc -l | grep -E '\s+total' | awk '{s+=$1}END{print s}'