mirror of
https://github.com/zadam/trilium.git
synced 2025-10-10 07:28:09 +08:00
10 lines
No EOL
209 B
Bash
Executable file
10 lines
No EOL
209 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cloc HEAD \
|
|
--git --md \
|
|
--include-lang=javascript,typescript \
|
|
--found=filelist.txt \
|
|
--exclude-dir=public,libraries,views,docs
|
|
|
|
grep -R \.js$ filelist.txt
|
|
rm filelist.txt |