Answers for "terminal command to get ip address"

5

ubuntu get your ip address from terminal\

hostname -I | cut -d' ' -f1
Posted by: Guest on July-22-2021
0

IP adress terminal

# when you're on your terminal Window : 
ipconfig

# on macOS : 
ifconfig | grep "inet" | grep -v 127.0.0.1

# on Linux : 

hostname -I
Posted by: Guest on May-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language