I have file of logs that all start with the timestamp, followed by the log level and then the message and I want a script that gets rid of the timestamp.
That is, I want a script that for every line of a file would turn:
21:22:34.571 DEBUG - some message
into
DEBUG - some message
I haven't used bash much so any advice would be appreciated.