mirror of
https://github.com/Foltik/dotfiles
synced 2024-11-28 13:36:59 -05:00
9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
IP_ADDRESS=$(ip route get 1 | awk '{print $NF;exit}')
|
||
|
|
||
|
if [[ "${IP_ADDRESS}" != "" ]]; then
|
||
|
echo "${IP_ADDRESS}"
|
||
|
echo "${IP_ADDRESS}"
|
||
|
echo ""
|
||
|
fi
|