mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-07 02:37:43 +08:00
5 lines
166 B
Fish
5 lines
166 B
Fish
function __fish_print_addresses --description "Print a list of known network addresses"
|
|
/sbin/ifconfig | __fish_sgrep 'inet addr'|cut -d : -f 2|cut -d ' ' -f 1
|
|
end
|
|
|