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