# 专利软著系列

#### 统计代码行数

```
^b*[^:b#/]+.*$

正则全局搜索
```

#### 安装cloc

```
# 安装Chocolatey（如果尚未安装）
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

# 安装cloc
choco install cloc

```

#### cloc统计代码行数

```
cloc . --include-lang="C#","XAML"
```