mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-29 05:03:46 +08:00
5 lines
131 B
Fish
5 lines
131 B
Fish
|
function __fish_complete_ppp_peer --description 'Complete isp name for pon/poff'
|
||
|
find /etc/ppp/peers/ -type f -printf '%f\n'
|
||
|
|
||
|
end
|