We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lsblk allows appending additional options to the defaults via the + prefix like this
lsblk
+
lsblk -o +FSTYPE,LABEL
The default list of columns may be extended if list is specified in the format +list (e.g., lsblk -o +UUID). https://man.archlinux.org/man/lsblk.8.en
I would like if zfs list, zpool list and others would support this too so you can do something like this
zfs list
zpool list
zfs list -o +compression,compressratio
zpool list -o +autotrim,ashift
I'm aware there is a space property for zfs list but that changes the format and is notthing similar seems to be available for zpool list.
space
You need to type and remember fewer options if you want to add non-default ones.
An alternative would be to provide a defaults property.
defaults
zfs list -o defaults,compression,compressratio
zpool list -o defaults,autotrim,ashift
Ideally both of these suggestion can be implemented.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the feature would like to see added to OpenZFS
lsblk
allows appending additional options to the defaults via the+
prefix like thisI would like if
zfs list
,zpool list
and others would support this too so you can do something like thisI'm aware there is a
space
property forzfs list
but that changes the format and is notthing similar seems to be available forzpool list
.How will this feature improve OpenZFS?
You need to type and remember fewer options if you want to add non-default ones.
Additional context
An alternative would be to provide a
defaults
property.Ideally both of these suggestion can be implemented.
The text was updated successfully, but these errors were encountered: