From 2e42dd3c875bde5a464c4077e1ea5d424eca1a3f Mon Sep 17 00:00:00 2001 From: Horus3 Date: Sun, 24 Aug 2014 17:31:27 +0200 Subject: add wordpress and resources directory. add respondtime.sh --- bin/respondtime.sh | 16 ++++++++++++++++ resources/curlinfo.txt | 8 ++++++++ wordpress/functions.php | 24 ++++++++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100755 bin/respondtime.sh create mode 100644 resources/curlinfo.txt create mode 100644 wordpress/functions.php diff --git a/bin/respondtime.sh b/bin/respondtime.sh new file mode 100755 index 0000000..de0731b --- /dev/null +++ b/bin/respondtime.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# use cURL to measure the time until the webpage loads + +CURLINFOTEXT="$(dirname $0)/../resources/curlinfo.txt" + +if [ ! -f "$CURLINFOTEXT" ]; then + echo "$(tput setaf 1)$(tput bold)Failure. $(tput sgr0)No Info Text for cURL given." 1>&2 + exit 1 +fi + +if [ -z "$1" ]; then + echo "$(tput setaf 1)$(tput bold)Failure. $(tput sgr0)Missing URL or Hostname" 1>&2 + exit 1 +fi + +curl -w "@$CURLINFOTEXT" -o /dev/null -s "$1" diff --git a/resources/curlinfo.txt b/resources/curlinfo.txt new file mode 100644 index 0000000..fa9ec7f --- /dev/null +++ b/resources/curlinfo.txt @@ -0,0 +1,8 @@ + time_namelookup: %{time_namelookup}\n + time_connect: %{time_connect}\n + time_appconnect: %{time_appconnect}\n + time_pretransfer: %{time_pretransfer}\n + time_redirect: %{time_redirect}\n + time_starttransfer: %{time_starttransfer}\n + ----------\n + time_total: %{time_total}\n diff --git a/wordpress/functions.php b/wordpress/functions.php new file mode 100644 index 0000000..464d9a3 --- /dev/null +++ b/wordpress/functions.php @@ -0,0 +1,24 @@ +