Advertisement
Sergio_Istea

conn_monitor.sh

Sep 20th, 2023
1,154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.13 KB | None | 0 0
  1. #!/bin/bash
  2. #
  3. #
  4.  
  5.  
  6. curl -sv $1 -o /dev/null
  7.  
  8. sleep 2
  9.  
  10. while :;do
  11.  
  12.     clear
  13.     netstat -tpn 2> /dev/null
  14.     sleep 0.1
  15.  
  16. done
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement