oh monks, I seek the answer to a vexing question:
I have some code which I need to add a section that forks to handle some long-running process. I already have some open file handles. When I add the forking code, I see errors with File::Remove::remove at line 109, where it tries to expand a file name with glob (which fails). My question is this, how can I make the child exit cleanly without executing any further code it has inherited? I am not sure exactly what behaviour I should expect with a fork (for I am a forking virgin - please be kind!).