Buenas,
watch -n 1 'netstat -patun | grep -i post | tee -a listando_conexoes.log; date | tee -a listando_conexoes.log'
Read More
watch -n 1 'netstat -patun | grep -i post | tee -a listando_conexoes.log; date | tee -a listando_conexoes.log'
Onde:
watch -n 1 'COMANDO' -> repete o comando a cada 1 segundo.
netstat -patun | grep -i post | tee -a listando_conexoes.log; -> redireciona a saida do netsta para o arquivo listando_conexoes.log
date | tee -a listando_conexoes.log -> Joga no fim da linha a data e hora
ABraços