# New Ticket Created by Joshua Isom # Please include the string: [perl #38229] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=38229 >
There are a fair number of documentation files in parrot that are pod files. Most of the README files aren't pod files, but the pge README and the tcl README are. There are several other files where the same occurs. If there aren't any objections, I can take care of this later on. Running(under tcsh): find -E . -not \( -name .svn -prune \) -type f -not -perm +111 -not -regex '.*\.([a-z0-9_]+|C)' -not -name Makefile -not -name harness -exec podchecker '{}' \; |& grep -v 'does not contain any pod commands' seems to find them all(except README.win32) as best I can tell. It's just a little annoying to me to expect a text file and get a pod file.