mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
10 lines
209 B
Bash
Executable File
10 lines
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 |