Hi All,

I am reading the output of

   curl https://www.bleepingcomputer.com/download/adwcleaner/ -o -

and looping through it with split.

This gets me about 1/20th of the lines:

    for split "\n", $WebPage -> $Line {

AAAHHHHH!

Doing a hex edit on the downloaded file, the delimiter is 0H0A

And this works!

    for split chr(0x0A), $WebPage -> $Line {

WHAT THE HECK does split think "\n" is anyway????  Is it
looking for a 0H12 or 0H13 ????

<editorial comment> AAAAAAAAHHHHHHHHHHH!!!!!</editorial comment>

-T

Reply via email to