in reply to Re: Re: Illegal seek error for system()
in thread Illegal seek error for system()

$! isn't reliable after a system(). The 512 means that the called program returned 512>>8, or 2. So look at the called program's manual page or other documentation, and find out what would make it exit with an error 2.
  • Comment on Re: Re: Re: Illegal seek error for system()

Replies are listed 'Best First'.
Re: Re: Re: Re: Illegal seek error for system()
by P0w3rK!d (Pilgrim) on Jul 19, 2001 at 22:36 UTC
    I switched over to using exec for now.
    I have received a numerous amount of errors using system().
    Thank you.