#mac book air でIPアドレスのみを知る方法
コマンド ifconfigを使用
ifconfig en0 | grep 'inet 10' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $2}
これで確認が可能
他にもhomenameやipといったコマンドでもできます.
Go to list of users who liked
More than 5 years have passed since last update.
#mac book air でIPアドレスのみを知る方法
コマンド ifconfigを使用
ifconfig en0 | grep 'inet 10' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $2}
これで確認が可能
他にもhomenameやipといったコマンドでもできます.
Register as a new user and use Qiita more conveniently
Go to list of users who liked