digraph fediverse {
graph [overlap=false]
#!
IFS=","
while read src dst
do
if [ ! $src == "src" ];
then
echo "\"${src}\" -> \"${dst}\""
fi
done
}