aoc2021/uloc.sh

5 lines
172 B
Bash
Raw Permalink Normal View History

2021-12-02 08:46:21 +00:00
#!/bin/sh -eu
find . -mindepth 2 -type f -and \( -name "*.awk" -or -name "*.py" \) -and -not -path "./libs/*" -print0 \
| xargs -0 cat | grep -v -E '^#' | sort -u | wc -l