mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 20:33:08 +00:00
5 lines
185 B
Fish
5 lines
185 B
Fish
function __fish_print_zfs_bookmarks -d "Lists ZFS bookmarks, if the feature is enabled"
|
|
if __fish_is_zfs_feature_enabled 'feature@bookmarks'
|
|
zfs list -t bookmark -o name -H
|
|
end
|
|
end
|