⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chlog-stats

📁 The Kannel Open Source WAP and SMS gateway works as both an SMS gateway, for implementing keyword b
💻
字号:
#!/usr/bin/awk -f## Compute some simple statistics from a ChangeLog file. Output has several# columns:##   1) number of changelog entries#   2) total lines in changelog entries#   3) average lines per entry#   4) username## Output is not sorted. Use "sort -n" to sort.## Lars Wirzenius/^[a-zA-Z0-9]/ {    match($NF, /<.*@/)    who = substr($NF, RSTART+1, RLENGTH-2)    if (who == "") who = $NF    entries[who]++    next}/[^ 	]/ { lines[who]++ }END {    for (who in entries)	printf "%4d %4d %.1f %s\n", entries[who], lines[who], 	    	    lines[who]/entries[who], who}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -