mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 22:17:52 +08:00
6 lines
185 B
Fish
6 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
|