Introduction

frensviz is a program to generate a DOT file from friends.txt files of a domain.
Installation
Install Dependencies
Installation
go install git.sr.ht/~thecashewtrader/frensviz@latest
Usage
frensviz [domain]
Example:
frensviz rehantdaphedar.xyz
You can use the generated file with dot
. For example, to generate an svg:
frensviz rehantdaphedar.xyz > graph.dot
dot -Tsvg graph.dot > graph.svg
You probably want to modify the graph.dot
file or use different flags with dot
. See the DOT Language Documentation for details.
Building
Build Dependencies
Building
Clone the source code
git clone https://git.sr.ht/~thecashewtrader/frensviz
cd frensviz
go build .