in reply to Increase speed script
open LIST,$file; open OUTPUT,">>",'cleaned.txt'; print "[-] Cleaning...\n"; while (<LIST>) { ($w1) = split(/:/,$_); print OUTPUT $w1."\n" unless ($data =~ /-/); } close LIST; close OUTPUT;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Increase speed script
by marto9 (Beadle) on Jul 11, 2008 at 18:07 UTC | |
by massa (Hermit) on Jul 11, 2008 at 19:48 UTC |