mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 00:04:31 +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
|
||
|
|