New backup 2025-03-12 18:45:01

This commit is contained in:
Penelope Gwen 2025-03-12 18:45:01 -07:00
parent 0a1d5f07c3
commit 45b0b41e50

View file

@ -0,0 +1,13 @@
#!/bin/bash
function ifstatus(){
echo $1
echo $2
}
ip monitor address | {
while read -r event; do
# echo hi ${event};
ifstatus "${1}" "${event}"
done;
}