in reply to how can i detect updates to running code?
Have a look through perlvar. %INC will contain a list of all the (Perl) files that have been loaded through use or require. If the -M check for such a file returns a negative value, the file was modified after the script was started.
|
|---|