lets say i have this text from the logfile:
Jun 10 11:09:07 mylinux daemon.notice openvpn[3710]: TCPv4_CLIENT link remote: 1.22.333.444:1111
But i don't need the part between "mylinux" and the next colon:
Thats the part i try to remove: daemon.notice openvpn[3710]
I "solved" it with awk, but thats not a good solution.
awk '{print $1,$2,$3,$4,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19,$20;}' /var/log/messages
I just wrote many "$" to cover as many lines as possible, but this won't work if there are more lines then $ ofc.
I know i can check how many lines exist with "NF", but i don't know how to use this information.
Thats how records in a logfile look like:
Jun 10 11:47:29 FeketeLUA daemon.notice openvpn[3710]: LZO compression initialized
Jun 10 11:47:29 FeketeLUA daemon.notice openvpn[3710]: Attempting to establish TCP connection with 5.55.222.34:1122 [nonblock]
Jun 10 11:47:30 FeketeLUA daemon.notice openvpn[3710]: TCP connection established with 12.11.123.444:1111
I think regexes are the way to go here. This is possible with awk but easier with Perl:
Where
\K
has to be there but is not considered part of the match (that is later replaced).*?
matches any string non-greedily (i.e., the shortest possible match is taken rather than the longest)(?=TCPv4_CLIENT)
is a lookahead term that matches an empty string if (and only if) it is followed byTCPv4_CLIENT
)So the regex will match the part between
mylinux
and the firstTCPv4_CLIENT
that comes after it and replace it with a space.Update: It's actually easier for the changed question since the ending delimiter is part of the removed match and we don't need the lookahead term for it:
\K
and.*?
continue to work as described before.