fix grep/awk pipeline

This commit is contained in:
Jeffrey Serio 2025-03-23 12:16:43 -05:00
parent e5d1777fc7
commit 207fa0c884

View File

@ -1,6 +1,6 @@
#!/bin/sh
PORT=$(natpmpc -a 1 0 udp 60 -g 10.2.0.1 | awk '/Mapped public/ {print $4}')
PORT=$(natpmpc -a 1 0 udp 60 -g 10.2.0.1 | grep "Mapped public port" | awk "{ print $4 }")
echo "$PORT" | tee /usr/local/etc/natvpn_port.txt
while true; do