-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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