diff --git a/check_buyvm_slice_available.sh b/check_buyvm_slice_available.sh new file mode 100755 index 0000000..50a742a --- /dev/null +++ b/check_buyvm_slice_available.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +URL="https://my.frantech.ca/cart.php?gid=39" + +N=$(curl -s "$URL" \ + | pup '#product1 > div:nth-child(4) > div:nth-child(2)' \ + | grep -o '[0-9]\+') + +if [ "$N" -gt 0 ]; then + curl -n -d "KVM slices available: $N" https://ntfy.franpenedo.com/general +fi \ No newline at end of file