Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Text strangeness after using SMB to get a file

by Paladin (Vicar)
on Sep 09, 2005 at 21:24 UTC ( [id://490765]=note: print w/replies, xml ) Need Help??


in reply to Text strangeness after using SMB to get a file

Since you mention SMB, I am assuming the files come from a Windows machine of some sort. Chances are that the files have DOS line endings, but your script is running on Solaris, which is assuming *nix line endings. Try running the file through a dos2unix utility to change the line endings first.
  • Comment on Re: Text strangeness after using SMB to get a file

Replies are listed 'Best First'.
Re^2: Text strangeness after using SMB to get a file
by ghenry (Vicar) on Sep 10, 2005 at 14:27 UTC

    Or you could just use:

    perl -i.bak -pe 's/\r\n/\n/' *

    Walking the road to enlightenment... I found a penguin and a camel on the way.....
    Fancy a yourname@perl.me.uk? Just ask!!!

      So instead of:

      chomp($csvLine);

      I could do:

      $csvLine =~ s/\r\n//;

      ?

      Never moon a werewolf!

        If you know it's always in DOS format.

        Walking the road to enlightenment... I found a penguin and a camel on the way.....
        Fancy a yourname@perl.me.uk? Just ask!!!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://490765]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-04-23 09:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found