in reply to Re: system function
in thread system function

Global symbol "@files" requires explicit package name at linker.pl line 3. Global symbol "@files" requires explicit package name at linker.pl line 5. Execution of linker.pl aborted due to compilation errors.

Replies are listed 'Best First'.
Re^3: system function
by Corion (Patriarch) on Mar 27, 2008 at 13:36 UTC
Re^3: system function
by ysth (Canon) on Mar 27, 2008 at 19:50 UTC
    That error has nothing to do with system; it tells you you haven't declared @files.

    In the code you show, you are setting @Logs but then trying to use @files. Since you didn't get an error on @Logs, I presume you declared it, and where you have @files you should change it to @Logs.