reword column examples

This commit is contained in:
2026-04-27 17:12:29 +02:00
parent d53ca311c1
commit 0d25236b27

View File

@@ -10,27 +10,27 @@ shell: sh
bin: column bin: column
tag: format tag: format
aim: Reformat file with an explicit separator (`-s`) aim: Reformat user accounts with an explicit separator (`-s`)
cmd: column -ts: /etc/passwd cmd: column -ts: /etc/passwd
shell: sh shell: sh
bin: column bin: column
tag: format 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 cmd: column -ts: -N User,PW,UID,GID,Description,Home,shell -H PW,GID /etc/passwd
note: Hide some columns with `-H`. note: Hide some columns with `-H`.
shell: sh shell: sh
bin: column bin: column
tag: format 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 cmd: column -ts: -N User,PW,UID,GID,Description,Home,shell -H PW,GID -O User,Description,shell /etc/passwd
note: Unspecified items remain. note: Unspecified items remain.
shell: sh shell: sh
bin: column bin: column
tag: format 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 cmd: column -J -ts: -H PW,GID,shell -N User,PW,UID,GID,Description,Home,shell /etc/passwd
shell: sh shell: sh
bin: column bin: column