From 0d25236b272bb3f5f4d591096e91ee2847cd79c4 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Mon, 27 Apr 2026 17:12:29 +0200 Subject: [PATCH] reword column examples --- command.rec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/command.rec b/command.rec index 1e3004a..4f70367 100644 --- a/command.rec +++ b/command.rec @@ -10,27 +10,27 @@ shell: sh bin: column tag: format -aim: Reformat file with an explicit separator (`-s`) +aim: Reformat user accounts with an explicit separator (`-s`) cmd: column -ts: /etc/passwd shell: sh bin: column tag: format -aim: Sort lines into columns with names +aim: Sort user accounts into columns with names cmd: column -ts: -N User,PW,UID,GID,Description,Home,shell -H PW,GID /etc/passwd note: Hide some columns with `-H`. shell: sh bin: column tag: format -aim: Sort lines into columns and reorder them +aim: Sort user accounts into columns and reorder them cmd: column -ts: -N User,PW,UID,GID,Description,Home,shell -H PW,GID -O User,Description,shell /etc/passwd note: Unspecified items remain. shell: sh bin: column tag: format -aim: Output to json format with `-J` +aim: Output user accounts in json format with `-J` cmd: column -J -ts: -H PW,GID,shell -N User,PW,UID,GID,Description,Home,shell /etc/passwd shell: sh bin: column