8 Dec
2002
8 Dec
'02
23:23
On Sun, Dec 08, 2002 at 08:45:02PM +0100, Michael Hoeller wrote:
Hello,
I like to get out of a log file all lines which are from 08.12.2002 *and* have the user 'michael'
grep 08.12.2002 /filename does the first half, how can I include there the grep for 'michael' ??
grep '^08\.12\.2002.*michael' <file name> Victor