mirror of
/repos/dotTiddlywiki.git
synced 2025-12-30 07:31:33 +01:00
34 lines
840 B
Plaintext
34 lines
840 B
Plaintext
created: 20190910150109186
|
|
creator: user
|
|
modified: 20190910151756683
|
|
modifier: user
|
|
tags:
|
|
title: Lines of code
|
|
type: text/vnd.tiddlywiki
|
|
|
|
!Vrendly Api
|
|
|
|
```sh
|
|
# fruit @ pro in ~/Development/trix-incasso on git:exact/split
|
|
$ cd src ; find . -not -path "*/www/*" -not -path "./vendor/*" -not -path "./dbscripts/*" -not -path "*/extensions/*" -type f -print -exec cat \{\} \; | wc -l
|
|
299073
|
|
|
|
```
|
|
|
|
!Vrendly Angular
|
|
|
|
```sh
|
|
# fruit @ pro in ~/Development/vrendly-angular on git:stripped-vrendly
|
|
$ find . -not -path "./.dobi/*" -not -path "./.git/*" -type f -exec cat \{\} \; |wc -l
|
|
97471
|
|
|
|
```
|
|
|
|
!Genifer
|
|
|
|
```sh
|
|
# fruit @ pro in ~/Development/genifer on git:development
|
|
$ cd src ; find . -not -path "*/www/*" -not -path "./vendor/*" -not -path "./storage/*" -not -path "*/extensions/*" -type f -print -exec cat \{\} \; | wc -l
|
|
149893
|
|
|
|
``` |