mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			198 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			198 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
cloc HEAD \
 | 
						|
    --git --md \
 | 
						|
    --include-lang=javascript,typescript \
 | 
						|
    --found=filelist.txt \
 | 
						|
    --exclude-dir=public,libraries
 | 
						|
 | 
						|
grep -R \.js$ filelist.txt
 | 
						|
rm filelist.txt |