tldr-pages/tldr

Let's document: iovisor/bcc

开放

#5,426 创建于 2021年3月12日

 (0 条评论) (2 个反应) (0 位负责人)Markdown (5,381 个派生)batch import
help wantedlet's documentnew command

仓库指标

星标
 (63,468 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

I found a large list (98) of incredible system monitoring tools for Linux: https://github.com/iovisor/bcc

Every single one of them is written in Python, so argdist.py is the executable (except read-trace which only has a .sh file and netqtop which as a .c file in addition to the .py file).

For reference, I used this script to test if we have each tool documented:

#!/bin/sh
tldrfind() {
    for p in "$TLDR_ROOT"/pages*; do
        for d in "$p"/*; do
            if [ -f "$d"/"$1".md ]; then
                echo 1
                return 0
            fi
        done
    done
    echo 0
    return 1
}

贡献者指南