well i need to write a shell script,
what i want to do is open a file,read each line ,do operations and then close a file.
open(HANDLE,filename);
@files = <HANDLE> ;
foreach $line(@files)
{
#####
}
close(HANDLE);
How will i do it in shell script..

Thanks,
Rahul

Reply via email to