fedigraph/template.dot

15 lines
147 B
Plaintext
Raw Normal View History

digraph fediverse {
graph [overlap=false]
#!
IFS=","
while read src dst
do
if [ ! $src == "src" ];
then
2022-11-25 17:14:59 +00:00
#!
"${src}" -> "${dst}"
#!
fi
done
#!
}