Replace tr invocations

This commit is contained in:
Fabian Homborg
2016-02-03 23:46:33 +01:00
parent fcdc6a48c0
commit cadb5d51ea
4 changed files with 5 additions and 5 deletions

View File

@@ -5,6 +5,6 @@ function __fish_print_interfaces --description "Print a list of known network in
echo $i
end
else # OSX/BSD
command ifconfig -l | tr ' ' '\n'
command ifconfig -l | string split ' '
end
end