This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# dir2dot.pl v0.5 (C) [email protected], released under the GPL. | |
# Download from: http://www.chaosreigns.com/code/ | |
# | |
# Generates a directed graph of a directory tree using graphviz like so: | |
# | |
# find . -type d -print | perl dir2dot.pl > dirtree.dot | |
# neato -Tpng dirtree.dot > dirtree.png | |
# |