mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
Remove cd in __fish_print_interfaces
This commit is contained in:
parent
d905ed33fe
commit
59eb75021b
|
@ -1,9 +1,7 @@
|
|||
function __fish_print_interfaces --description "Print a list of known network interfaces"
|
||||
if test -d /sys/class/net
|
||||
cd /sys/class/net
|
||||
for i in *
|
||||
echo $i
|
||||
end
|
||||
set -l interfaces /sys/class/net/*
|
||||
string replace /sys/class/net/ '' $interfaces
|
||||
else # OSX/BSD
|
||||
command ifconfig -l | string split ' '
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user