Skip to content

Instantly share code, notes, and snippets.

@dentarg
Forked from pearkes/host
Last active December 23, 2015 16:09
Show Gist options
  • Save dentarg/6660050 to your computer and use it in GitHub Desktop.
Save dentarg/6660050 to your computer and use it in GitHub Desktop.
If you run `host` with https://google.com, this strips http[s]:// and the trailing / (zsh only)
#!/usr/bin/env zsh
# I only use host for checking records, and 9 times out of 10
# I copy paste the url from my browser. Chrome adds http[s]://.../
if [ -n "$1" ]
then
# 1 parameter, let's do this thing
/usr/bin/host ${${1#*//}%/*}
else
# Carry on
/usr/bin/host "$@"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment