diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2016-06-21 09:53:05 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2016-06-21 09:53:05 +1200 |
commit | 39f3cad3ab392fce1fc4ed4523475404adb2bf51 (patch) | |
tree | 976c99f8888eb1a06798fced000af6744a3a008d | |
parent | Add options terminator (diff) | |
download | dotfiles-39f3cad3ab392fce1fc4ed4523475404adb2bf51.tar.gz dotfiles-39f3cad3ab392fce1fc4ed4523475404adb2bf51.zip |
Fix spelling mistake
-rwxr-xr-x | bin/urlcheck | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/urlcheck b/bin/urlcheck index 7151b85e..5692a892 100755 --- a/bin/urlcheck +++ b/bin/urlcheck @@ -32,7 +32,7 @@ declare -i errc # Iterate through input; ignore leading/trailing whitespace while read -r url ; do - # Skip anything that doesn't start wit HTTP + # Skip anything that doesn't start with HTTP [[ $url == 'http'* ]] || continue # Make initial request, log head and body to files, cry and skip on error |