There are multiple ways to skin this cat. For now one of the simplest.
#!/bin/sh while read LINE do ...DO SOME STUFF WITH THE ${LINE}... done <somefile.txt
Replace “somefile.txt” with the file you want to process.
There are multiple ways to skin this cat. For now one of the simplest.
#!/bin/sh while read LINE do ...DO SOME STUFF WITH THE ${LINE}... done <somefile.txt
Replace “somefile.txt” with the file you want to process.
No related posts.