in reply to Re^4: Print to a file then use file content for test?
in thread Print to a file then use file content for test?

I'll try the "od -c" please ignore the post that it worked on solaris box it didn't work on the solaris box either. Thanks
  • Comment on Re^5: Print to a file then use file content for test?

Replies are listed 'Best First'.
Re^6: Print to a file then use file content for test?
by lcollins (Novice) on Jan 06, 2005 at 14:13 UTC
    For those interested Problem solved! Thanks The od -c did the trick. the first script wrote to the file with \r\n for line termination. I just had to add "s/\r//g;" after "while" to clear it up. Thanks for the od -c suggestion!!!!!!