Dear all.
I want to achieve the following:
1/grep all the lines starting with id 35.64 for example, from a log file:
grep [3][5][.][6][4] file.log
result:
35.64 325323666 20050818
35.64 325325666 20050818
35.64 325327666 20050818
35.64 325328666 20050818
2/Once I get all the lines, parse them and fill values in a chart:
id user SID timestamp
-----*-----*----*----------*
35.64 325323 666 20050818
35.64 325325 666 20050818
35.64 325327 666 20050818
35.64 325328 666 20050818
Would also be nice to be able to sort the fields by timestamp or user/
Thanks for any input@
merou