mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-13 16:32:56 +00:00
9 lines
231 B
Bash
Executable File
9 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while true; do
|
|
echo -n "==== CURRENT TIME:" >> /tmp/test_output/netstat.stdout
|
|
date +"%T.%N" >> /tmp/test_output/netstat.stdout
|
|
netstat -vpno | grep tcp | sort >> /tmp/test_output/netstat.stdout
|
|
sleep 0.5
|
|
done
|