The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM


Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
perl script to add a line into a file karthikn7974 Shell Programming and Scripting 2 06-02-2008 10:11 PM
help on a perl script to edit file meghana Shell Programming and Scripting 9 05-14-2008 11:42 AM
grep ^M in file using perl script.... zedex Shell Programming and Scripting 12 02-06-2008 04:43 AM
Have a shell script check for a file to exist before processing another file heprox Shell Programming and Scripting 3 11-13-2006 11:26 PM
File processing on perl garric Shell Programming and Scripting 2 09-01-2006 08:25 PM

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-23-2008
Registered User
 

Join Date: Mar 2008
Posts: 4
Post perl script for file processing

Aim:

To scan a file and ignore all characters that has an ASCII value from 0 to 31 and 127 to 255 and accept only those characters having an ASCII between 32 and 126.

Script:

#!/usr/local/bin/perl
$filename = "$ARGV[0]";
if (-e $filename)
{
open(OUT, "${filename}") || die "can't open $filename\n";
while (<OUT>){
$found= "";
$stat=0;
chomp $_;
my @charArray = split(//, $_);
my $ref = \@charArray;
foreach (@charArray) {
$val = ord($$ref[$stat]);
if(($val>31)&&($val<127)){
$found = "$found$$ref[$stat]";
}
$stat++;
}
$found = "$found\n";
print $found;
}
close(OUT);
}

Problem:
The code mentioned above runs for 20-25 mins for a 500 MB file. This is very slow.


Can someone let me know if this can be done in a more efficient way so as to reduce the file processing duration?
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 03-23-2008
Technorati Master
 

Join Date: Mar 2005
Location: Large scale systems...
Posts: 2,475
try this,

Code:
#! /opt/third-party/bin/perl

open(FILE, "<", $ARGV[0]) || die ("unable to open <$!>\n");

while( read(FILE, $data, 1) == 1 ) {
  $ordVal = ord($data);
  print "$ordVal"  if( $ordVal >= 32 && $ordVal <= 126 );
}

close(FILE);

exit(0);
Reply With Quote
  #3 (permalink)  
Old 03-24-2008
Registered User
 

Join Date: Mar 2008
Posts: 4
Hi Madhan,

Corrected code:

#!/usr/local/bin/perl
open(FILE, "<", $ARGV[0]) || die ("unable to open <$!>\n");
while( read(FILE, $data, 1) == 1 ) {
if((ord($data)>=32)&&(ord($data)<=126)){
print "$data";
}
if(ord($data)==10){
print "\n";}
}
close(FILE);

Its great it takes just 10 mins now. Is there anything else that can be done to reduce the duration further?
Reply With Quote
  #4 (permalink)  
Old 03-24-2008
Technorati Master
 

Join Date: Mar 2005
Location: Large scale systems...
Posts: 2,475
Minor change but this will make a difference

change the following

Quote:
if((ord($data)>=32)&&(ord($data)<=126)){
print "$data";
}
if(ord($data)==10){
print "\n";}
}
to

Code:
print "$data" if((ord($data)>=32)&&(ord($data)<=126));

print "\n" if(ord($data)==10);
Reply With Quote
  #5 (permalink)  
Old 03-24-2008
Registered User
 

Join Date: Mar 2008
Posts: 4
Hi Madhan,

Thanks..It still takes 10 mins. I have one question here, if we are reading the entire file and moving one character by character won't it consume valuable memory? For eg in C we can take certain bytes (as first batch) from the file and process it and then follow with the next batch of the file.
Can anything be done here?

Please correct me if I am wrong.
Reply With Quote
  #6 (permalink)  
Old 03-24-2008
Technorati Master
 

Join Date: Mar 2005
Location: Large scale systems...
Posts: 2,475
Quote:
It still takes 10 mins.
Are you testing with the same input file ?
And probably with the same load each time ?
Reply With Quote
  #7 (permalink)  
Old 03-24-2008
Technorati Master
 

Join Date: Mar 2005
Location: Large scale systems...
Posts: 2,475
Quote:
For eg in C we can take certain bytes (as first batch) from the file and process it and then follow with the next batch of the file
Yes.

Probably you could try something like
Code:
while( read(FILE, $data, 1000) == 1000 ) {
and then split $data and use to process,
I think it will definitely reduce I/O here.

Let me know how it goes !
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 04:12 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0