2007-09-21 20:52:12 +00:00
|
|
|
function __fish_print_addresses --description "Print a list of known network addresses"
|
2015-09-16 21:01:27 +00:00
|
|
|
if command -s ip >/dev/null
|
|
|
|
command ip --oneline address | cut -d" " -f7 | sed "s:\(.*\)/.*:\1:"
|
|
|
|
else if command -s ifconfig >/dev/null
|
2015-09-18 10:00:12 +00:00
|
|
|
# This is for OSX/BSD
|
|
|
|
# There's also linux ifconfig but that has at least two different output formats
|
|
|
|
# is basically dead, and ip is installed on everything now
|
|
|
|
ifconfig | awk '/^\tinet/ { print $2 } '
|
2015-09-16 21:01:27 +00:00
|
|
|
end
|
2007-09-21 20:52:12 +00:00
|
|
|
end
|
|
|
|
|