xsay: add support for sselp and xclip; output error message
[grml-scripts.git] / usr_bin / myip
index 0f77d5a..66ef2e4 100755 (executable)
@@ -9,13 +9,16 @@
 
 # little helper functions that skips the httpheader of a site
 function skip_httpheader {
-  for i in {1..6} ; do read -u $REPLY LINE; done
+   for i in {1..7} ; do
+         read -u $REPLY LINE; 
+         if [[ "$LINE" == "\r" ]] ; then return ; fi
+  done
 }
 
 zmodload zsh/net/tcp
-HOST=showip.spamt.net
+HOST=v4.showip.spamt.net
 ztcp $HOST 80
-print -u $REPLY "GET / HTTP/1.1\r\nHost: $HOST\r\n\r\n"
+print -u $REPLY "GET / HTTP/1.0\r\nHost: $HOST\r\n\r\n"
 skip_httpheader
 read -u $REPLY LINE
 echo "$LINE"