tail -f /path/to/file.log | sed '/^Finished: SUCCESS$/ q'
August 22, 2012 — bashoneliners
tail -f until this exact line is seen:
tail -f
Finished: SUCCESS
The exit condition does not have to be an exact line, it could just well be a simple pattern:
... | sed '/Finished/ q'