how to find the ip adress through the terminal code example
Example 1: 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
Example 2: get your ip address from terminal
for local ip :
hostname -I
for Public ip :
curl icanhazip.com