1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Zsh】ターミナルから爆速で自分のグローバルIPアドレスを調べる方法

Posted at

ターミナルから自分のグローバルIPアドレスを調べる

普段作業をしていて自分のグローバルIPアドレスを知りたくなる時があるかと思います。

調べる方法としては「あなたが現在インターネットに接続しているグローバルIPアドレス確認」ここで調べたりするのが有名な方法なんじゃないでしょうか。

ですが、今回はターミナルを用いてグローバルIPアドレスを調べる方法をご紹介します。

エイリアスを使う

今回はMacのターミナルでZshを使っての方法をご紹介します。

環境

  • macOS Mojave v.10.14.6
  • iTerm2
  • Zsh

.zshrc に以下を書きます。

alias myip="curl http://ipecho.net/plain; echo"

そうしたら以下のコマンドを叩いて有効化します。

source ~/.zshrc // .zshrcがあるパスをここに書く

これで準備は完了です。

グローバルIPを調べてみる

あとはターミナルでmyipコマンドを打つだけです。

参考

10 Zsh Tips & Tricks: Configuration, Customization & Usage

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?