Newline error

2006-06-06 Thread joseph
All, Just like to ask for correction on what's wrong with my script it gives spit out this error when i run it. Unsuccessful open on filename containing newline at disksize.pl line 8. Can't open file No such file or directory But it runs without this error whenever i feed it up when an

Re: Newline error

2006-06-06 Thread Xavier Noria
On Jun 6, 2006, at 12:59, joseph wrote: All, Just like to ask for correction on what's wrong with my script it gives spit out this error when i run it. Unsuccessful open on filename containing newline at disksize.pl line 8. Can't open file No such file or directory But it runs without

Re: Newline error

2006-06-06 Thread John W. Krahn
joseph wrote: All, Hello, Just like to ask for correction on what's wrong with my script it gives spit out this error when i run it. Unsuccessful open on filename containing newline at disksize.pl line 8. Can't open file No such file or directory But it runs without this error

Re: Newline error

2006-06-06 Thread Mr. Shawn H. Corey
On Tue, 2006-06-06 at 18:59 +0800, joseph wrote: All, Just like to ask for correction on what's wrong with my script it gives spit out this error when i run it. Unsuccessful open on filename containing newline at disksize.pl line 8. Can't open file No such file or directory But it

Re: Newline error

2006-06-06 Thread Muma W.
joseph wrote: All, Just like to ask for correction on what's wrong with my script it gives spit out this error when i run it. Unsuccessful open on filename containing newline at disksize.pl line 8. Can't open file No such file or directory But it runs without this error whenever i feed it

Re: Newline error

2006-06-06 Thread John W. Krahn
Mr. Shawn H. Corey wrote: $output_file =~ s/\r//g; # chomp only removes linefeed characters \n # BTW, there is no such thing as a newline; # it is either a linefeed: \n ASCII LF 0x0A # or a carriage return: \r ASCII CR 0x0D \n is inherited from the C programming language and is the

Re: Newline error

2006-06-06 Thread Xavier Noria
On Jun 6, 2006, at 14:16, John W. Krahn wrote: Mr. Shawn H. Corey wrote: $output_file =~ s/\r//g; # chomp only removes linefeed characters \n # BTW, there is no such thing as a newline; # it is either a linefeed: \n ASCII LF 0x0A # or a carriage return: \r ASCII CR 0x0D \n is inherited

Re: Newline error

2006-06-06 Thread joseph
Mr. Shawn H. Corey [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tue, 2006-06-06 at 18:59 +0800, joseph wrote: All, Just like to ask for correction on what's wrong with my script it gives spit out this error when i run it. Unsuccessful open on filename containing newline

Re: Newline error

2006-06-06 Thread joseph
John W. Krahn [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] joseph wrote: All, Hello, Just like to ask for correction on what's wrong with my script it gives spit out this error when i run it. Unsuccessful open on filename containing newline at disksize.pl line 8. Can't

Re: Newline error (Closed)

2006-06-06 Thread joseph
Muma W. [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] joseph wrote: All, Just like to ask for correction on what's wrong with my script it gives spit out this error when i run it. Unsuccessful open on filename containing newline at disksize.pl line 8. Can't open file No such

Re: Newline error

2006-06-06 Thread joseph
Xavier Noria [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Jun 6, 2006, at 14:16, John W. Krahn wrote: Mr. Shawn H. Corey wrote: $output_file =~ s/\r//g; # chomp only removes linefeed characters \n # BTW, there is no such thing as a newline; # it is either a linefeed: \n