5 lines
174 B
Bash
5 lines
174 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
find . \( -name "*.sh" -or -name "*.elm" \) -and -not \( -path "./elm-stuff/*" -or -path "./.vscode/*" \) -print0 | \
|
||
|
xargs -0 cat | countuniq0 # sort -u | wc -l
|