From: Rom Date: Sat, 11 May 2024 18:41:39 +0000 (-0700) Subject: Fix fstab order in `column` manpage example. X-Git-Tag: v2.42-start~348^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7f4ffbc2e6740f829b45c0801fdfadea966615d5;p=thirdparty%2Futil-linux.git Fix fstab order in `column` manpage example. fstab is: 1. fs_spec 2. fs_file 3. fs_vfstype 4. fs_mntops 5. fs_freq 6. fs_passno In other words it's: SOURCE,TARGET,TYPE,OPTIONS,FREQ,PASS --- diff --git a/text-utils/column.1.adoc b/text-utils/column.1.adoc index 17f6eb039..c16743597 100644 --- a/text-utils/column.1.adoc +++ b/text-utils/column.1.adoc @@ -211,7 +211,7 @@ Historical versions of this tool indicated that "rows are filled before columns" Print fstab with header line and align number to the right: .... -sed 's/#.*//' /etc/fstab | column --table --table-columns SOURCE,TARGET,TYPE,OPTIONS,PASS,FREQ --table-right PASS,FREQ +sed 's/#.*//' /etc/fstab | column --table --table-columns SOURCE,TARGET,TYPE,OPTIONS,FREQ,PASS --table-right FREQ,PASS .... Print fstab and hide unnamed columns: