mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
7 lines
508 B
Text
7 lines
508 B
Text
|
#!/bin/bash
|
||
|
echo $(( $(find ape dsp libc examples net test third_party tool -name \*.c | xargs cat | wc -l) +
|
||
|
$(find ape dsp libc examples net test third_party tool -name \*.h | xargs cat | wc -l) +
|
||
|
$(find ape dsp libc examples net test third_party tool -name \*.S | xargs cat | wc -l) +
|
||
|
$(find ape dsp libc examples net test third_party tool -name \*.el | xargs cat | wc -l) +
|
||
|
$(find ape dsp libc examples net test third_party tool -name \*.mk | xargs cat | wc -l) ))
|