mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-29 18:49:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			217 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			217 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| cd src/public
 | |
| echo Summary
 | |
| cloc HEAD \
 | |
|     --git --md \
 | |
|     --include-lang=javascript,typescript
 | |
| 
 | |
| echo By file
 | |
| cloc HEAD \
 | |
|     --git --md \
 | |
|     --include-lang=javascript,typescript \
 | |
|     --by-file | 
