Hi,
I am new to perl programming and could use a little beginners advice. I have this file that contains date, email address and text.
101020 16:35:07
test1@name.xyz.com Account tested
101020 16:42:27
admin@name.xyz.com password reset requested
101020 16:42:39
fname@domanin.net password reset enabled
Using perl programming is it possible to read this file and split the date in each line to have date, domain address and activity message. The ouput may be similar to as below
101020 16:35:07
test1@name.xyz.com
Account tested
similarly for other lines as well.
Thanks,