tags:

views:

81

answers:

2

Is there a tool available to create call diagrams or create other documentation from a Korn Shell file?

A: 

you can try dia or umlgraph. Search google for more

ghostdog74
I want a tool to automatically create the graphs, not make me do it manually.
C. Ross
A: 

Do your own parsing (simple string matching might be sufficient) of the script and use graphviz to generate a graph?

Anders Lindahl
It's what I'm working on, but I'd rather not re-invent the wheel if I don't have to.
C. Ross