Mac OS 업데이트 이후 telnet을 사용하지 못하여 아쉬운 경우에는 Homebrew을 통해서 설치하면 된다.
$ brew install telnet
# Homebrew 삭제
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
# Homebrew 설치
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Git global 설정된 remote.origin.url이 설정된 경우, Git global 설정 unset
$ git config --list
credential.helper=osxkeychain
user.name=zzonsang
user.email=zzonsang2@gmail.com
gui.encoding=utf-8
remote.origin.url=https://zzonsang2@bitbucket.org/zzonsang2/zzonsang.git
color.ui=true
$ git config --global --unset remote.origin.url
# Homebrew 설치 재요청
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Telnet 설치
$ brew install telnet
==> Downloading https://homebrew.bintray.com/bottles/telnet-54.50.1.high_sierra.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring telnet-54.50.1.high_sierra.bottle.1.tar.gz
🍺 /usr/local/Cellar/telnet/54.50.1: 4 files, 246KB
저 같은 경우에는 Git Global config 때문에 엉뚱한 개인 Repository를 다운로드 받았더라구요^^;
그래서 임시로 설정 내리고 설치했습니다.^^