I have some application that produce log file and at the end of file I have total processing time like:
Processing done in 45.00031 sec
I can get this line using:
cat app.log | grep "Processing done in"
But how to parse string to get only number of seconds?
45.00031