mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-26 14:01:13 -03:00
5 lines
172 B
Fish
5 lines
172 B
Fish
# localization: skip(private)
|
|
function __fish_complete_zfs_pools -d "Completes with available ZFS pools"
|
|
zpool list -o name,comment -H | string replace -a \t'-' ''
|
|
end
|