Remove broken github counters and introduce the sys/counters.sh ##ci
This commit is contained in:
parent
00e12a1699
commit
a90ad913ae
|
@ -3,7 +3,7 @@
|
|||
## Radare2: Libre Reversing Framework for Unix Geeks
|
||||
|
||||
[![Latest packaged version](https://repology.org/badge/latest-versions/radare2.svg)](https://repology.org/project/radare2/versions) [![Tests Status](https://github.com/radareorg/radare2/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/radareorg/radare2/actions/workflows/ci.yml?query=branch%3Amaster) [![build](https://github.com/radareorg/radare2/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/radareorg/radare2/actions/workflows/build.yml?query=branch%3Amaster) [![tcc](https://github.com/radareorg/radare2/actions/workflows/tcc.yml/badge.svg?branch=master)](https://github.com/radareorg/radare2/actions/workflows/tcc.yml)
|
||||
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/741/badge)](https://bestpractices.coreinfrastructure.org/projects/741) [![Build Status](https://scan.coverity.com/projects/416/badge.svg)](https://scan.coverity.com/projects/416) [![TODO](https://img.shields.io/github/search/radareorg/radare2/TODO.svg)](https://github.com/radareorg/radare2/search?q=TODO) [![GLOBALS](https://img.shields.io/github/search/radareorg/radare2/R_TH_LOCAL.svg)](https://github.com/radareorg/radare2/search?q=R_TH_LOCAL)[![XXX](https://img.shields.io/github/search/radareorg/radare2/XXX.svg)](https://github.com/radareorg/radare2/search?q=XXX) [![Discord](https://badgen.net/discord/members/YBey7CR9jf)](https://discord.gg/YBey7CR9jf)
|
||||
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/741/badge)](https://bestpractices.coreinfrastructure.org/projects/741) [![Build Status](https://scan.coverity.com/projects/416/badge.svg)](https://scan.coverity.com/projects/416) [![Discord](https://badgen.net/discord/members/YBey7CR9jf)](https://discord.gg/YBey7CR9jf)
|
||||
|
||||
See the [Releases](https://github.com/radareorg/radare2/releases) page for
|
||||
downloads. The current git `master` branch is `5.8.3`, next will be `5.8.4`.
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
echo "# Counters"
|
||||
|
||||
printf -- "XXX\t"
|
||||
git grep XXX libr | wc -l
|
||||
printf -- "TODO\t"
|
||||
git grep TODO libr | wc -l
|
||||
printf -- "GLOBALS\t"
|
||||
git grep R_TH_LOCAL libr | grep -v include | wc -l
|
||||
|
||||
printf -- "strcpy\t"
|
||||
git grep 'strcpy (' libr | wc -l
|
||||
printf -- "sprintf\t"
|
||||
git grep 'sprintf (' libr | wc -l
|
Loading…
Reference in New Issue