forked from ahurac/dotfiles
12 lines
173 B
Text
12 lines
173 B
Text
|
# curl
|
||
|
function reveal-url {
|
||
|
curl "$1" -IL --silent | grep 'location: '
|
||
|
}
|
||
|
|
||
|
# zsh
|
||
|
command_not_found_handler() {
|
||
|
>&2 echo "bruh wtf is \"${1}\" o_O"
|
||
|
return 127
|
||
|
}
|
||
|
|