Re: off topic question : simple shell script

2002-02-08 Thread William.Ampeh
This will do the job File starts from the line "#!/bin/bash --- --- #!/bin/bash #-- #AUTHOR: William Ampeh #PURPOSE: Reads input from $1 (a file) and print output to $2 (another f

off topic question : simple shell script

2002-02-07 Thread Rahul Garg
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 = ; foreach $line(@files) { # } close(HANDLE); How will i do it in shell script.. Thanks, Rahul