起きたこと
以下のようにbrewでwgetをインストールした後、実行すると死にました。
$ brew install wget
$ wget
dyld: Library not loaded: /usr/local/opt/pcre/lib/libpcre.1.dylib
Referenced from: /usr/local/bin/wget
Reason: image not found
fish: 'wget' terminated by signal SIGABRT (Abort)
解決策
pcreという正規表現に関するライブラリが入ってないよと怒られているので入れてやります。
$ brew install pcre
$ wget
wget: missing URL
Usage: wget [OPTION]... [URL]...
Try `wget --help' for more options.
やったね!