summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgetsrv3
1 files changed, 2 insertions, 1 deletions
diff --git a/getsrv b/getsrv
index cb6daeb..019cdf0 100755
--- a/getsrv
+++ b/getsrv
@@ -19,7 +19,7 @@ elif which host >/dev/null;then
host -t SRV "$record" | cut '-d ' -f5-
echo "after host" >&2
else
- echo "fuck me. how am I supposed to get a srv record without dig or host?" >&2
+ echo "how am I supposed to get a srv record without dig or host? giving up." >&2
exit 1
fi | grep '^[0-9][0-9]* [0-9][0-9]*' \
| sort -rn \
@@ -34,3 +34,4 @@ fi | grep '^[0-9][0-9]* [0-9][0-9]*' \
| cut '-d ' -f2- \
| shuf \
| head -n1 \
+## that last pipeline tries to get pretty close to printing a properly weighted response, but not perfect.