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