In a bash script, I'm waiting on a child process's pid using wait. That child process is writing to a log file. Is there a way in the bash script to tail that log file to std out while at the same time waiting on the process to complete?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use the
This is in spirit similar to William's solution, but with one important difference: it will correctly print the log file if it takes longer for |
|||||
|
|
Run cat in the background:
|
|||||||||||||
|