From 7f4ffbc2e6740f829b45c0801fdfadea966615d5 Mon Sep 17 00:00:00 2001 From: Rom Date: Sat, 11 May 2024 11:41:39 -0700 Subject: [PATCH] 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 --- text-utils/column.1.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.47.2