8 lines
155 B
Text
8 lines
155 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# https://github.com/rtomayko/dotfiles/blob/rtomayko/bin/headers
|
||
|
|
||
|
curl -sv "$@" 2>&1 >/dev/null |
|
||
|
grep -v "^\*" |
|
||
|
grep -v "^}" |
|
||
|
cut -c3-
|