Redirecting multiple stdouts to single file
Posted
by obvio171
on Stack Overflow
See other posts from Stack Overflow
or by obvio171
Published on 2010-04-26T00:23:52Z
Indexed on
2010/04/26
0:33 UTC
Read the original article
Hit count: 345
I have a program running on multiple machines with NFS and I'd like to log all their outputs into a single file. Can I just run ./my_program >> filename
on every machine or is there an issue with concurrency I should be aware of? Since I'm only appending, I don't think there would be a problem, but I'm just trying to make sure.
© Stack Overflow or respective owner