linux - Continuously print stdout and write to file -


i have program intermittently print stdout. want see output on screen , redirect file.

i can use tee follows:

foo | tee ./log.txt 

however, print output screen when foo has terminated not allowing me observe progress of program.

is there way continuously show output of program , redirect log file?

is acceptable write output file , display live ?

$> foo > ./log.txt & tail -f ./log.txt 

Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -