Possible Duplicate:
How to watch logs in real time via Terminal?

The scene where Mark is monitoring TCP/IP connections to his Facemesh website, and comments "look at all this traffic". What program was he using? Netstat?

link|improve this question
Possible duplicate of serverfault.com/questions/192409/… ? I haven't seen the movie, so I'm not sure if this question and the Apache log question are actually asking about the same thing. – Stefan Lasiewski Nov 17 '10 at 18:06
Disagree with the reason for closing. This is a relevant question to system administration, as he is referencing the movie as inspiration to what he wants to do which is in fact server/sys-administration related. I think it should have been closed more appropriately as a dupe. – Joshua Enfield Nov 17 '10 at 18:25
yes, that's right -- the movie was inspiring in that, "hey, i want to do that, too." – user60596 Nov 17 '10 at 23:38
feedback

closed as exact duplicate by Chopper3 Nov 17 '10 at 18:51

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

netstat -anp | grep :80 | wc -l

link|improve this answer
feedback