2007-09-22 04:52:12 +08:00
|
|
|
function __fish_print_addresses --description "Print a list of known network addresses"
|
2017-02-14 00:30:38 +08:00
|
|
|
if command -sq ip
|
2016-11-28 13:27:22 +08:00
|
|
|
command ip --oneline address | cut -d" " -f7 | sed "s:\(.*\)/.*:\1:"
|
2017-02-14 00:30:38 +08:00
|
|
|
else if command -sq ifconfig
|
2016-11-28 13:27:22 +08: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 } '
|
|
|
|
end
|
2007-09-22 04:52:12 +08:00
|
|
|
end
|
|
|
|
|