A complete guide to building skills for Claude | Claude Blog에서 공개한 PDF를 마크다운 기반으로 변경한 파일입니다.
This file contains hidden or 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) Darxus@ChaosReigns.com, 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 | |
| # |