tldr-pages/tldr

Let's document: iovisor/bcc

Open

#5,426 opened on 2021年3月12日

GitHub で見る
 (0 comments) (2 reactions) (0 assignees)Shell (2,507 forks)batch import
help wantedlet's documentnew command

Repository metrics

Stars
 (30,937 stars)
PR merge metrics
 (平均マージ 7d 5h) (30d で 321 merged PRs)

説明

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
}

コントリビューターガイド