in reply to Re^5: Print to a file then use file content for test?
in thread Print to a file then use file content for test?
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!!!!!!