emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] Graphic of the Org-mode require structure


From: Eric Schulte
Subject: [O] Graphic of the Org-mode require structure
Date: Tue, 11 Dec 2012 23:19:08 -0700
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

This is a visualization of which Org-mode files require which other
Org-mode files.  It may not hold any new insights, but I found it
interesting.

    # shell-script
    (echo "digraph {";
      for file in lisp/*.el;do
        name=$(basename $file .el)
        echo "\"$name\";"
        cat $file|sed -n "s/^.*(require '\([^) ]\+\)).*$/\"\1\" -> \"$name\"/p;"
      done;echo "}";
    )|dot -Tsvg > /tmp/org-requires.svg

Attachment: org-requires.svg
Description: image/svg

-- 
Eric Schulte
http://cs.unm.edu/~eschulte

reply via email to

[Prev in Thread] Current Thread [Next in Thread]