alias Head="curl -s --head"
alias Get="curl -s --get -L"
fi
+# NB 15.07.15 function nbGet() {
+# NB 15.07.15 declare host port uri
+# NB 15.07.15 eval $(perl -ne 'm,^\s*\w+://([^/:]+)(?::(\d+))?(/.*)?\s*$, and print qq|host=$1 port=$2 uri=$3\n|' <<< "$@")
+# NB 15.07.15 [ -z "$port" ] && port=80
+# NB 15.07.15 [ -z "$uri" ] && uri='/'
+# NB 15.07.15 echo $host $port $uri
+# NB 15.07.15 printf "GET $uri HTTP/1.0\r\nHost: $host\r\n\r\n" |nc -i 5 $host $port
+# NB 15.07.15 }
#--------------------------------------------------------------------------------
# bc