From d7183c983de546614cf037f73d3f3f1eed823dc7 Mon Sep 17 00:00:00 2001 From: Sahil Dhiman <52946452+sahilister@users.noreply.github.com> Date: Sun, 12 Jul 2020 13:58:06 +0000 Subject: [PATCH] vgs: add page (#4164) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Zlatan Vasović Co-authored-by: Starbeamrainbowlabs --- pages/linux/vgs.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/linux/vgs.md diff --git a/pages/linux/vgs.md b/pages/linux/vgs.md new file mode 100644 index 0000000000..152aebfb07 --- /dev/null +++ b/pages/linux/vgs.md @@ -0,0 +1,32 @@ +# vgs + +> Display information about LVM volume groups. +> More information: https://man7.org/linux/man-pages/man8/vgs.8.html . + +- Display information about volume groups: + +`vgs` + +- Display all volume groups: + +`vgs -a` + +- Change default display to show more details: + +`vgs -v` + +- Display only specific fields: + +`vgs -o {{field_name_1}},{{field_name_2}}` + +- Append field to default display: + +`vgs -o +{{field_name}}` + +- Suppress heading line: + +`vgs --noheadings` + +- Use separator to separate fields: + +`vgs --separator =`