I've got a file which is like this:
3 EOE
5 APPLE
6 NOBODY
i need to parse this and output all with '3' in the first column into filename.3, '4' into filename.4, etc... from the unix prompt
|
|
|
Something like this should work (I haven't tested it):
When |
||||
|
|
If you want the entire line:
|
|||
|
|
|
using bash for loops, cut and grep
|
|||
|
|