I have a perl program that gives a shell to the user with menus, commands that he can execute etc. I want to integrate into it help (-help option or -man). I read a little about perl pod and what I wanted to ask is whether I must that all command of mine should be put under a single perl script in order that the POD in it will be related to it. if yes then it means I'll have a lot of files (as the number of the commands in my shell - and I have a lot).
Is there a way that I can put all the DOC (of all the commands) in a single file, and somehow every command will know where to go in order to get it's help?
In reply to perl POD
by hotshot