linux/unix 命令“列”的语法

2 linux unix

命令“列”的联机帮助页显示:

column [-tx] [-c columns] [-s sep] [file ...]

 -s      Specify a set of characters to be used to delimit
         columns for the -t option.
Run Code Online (Sandbox Code Playgroud)

我找不到如何使用参数“-s”。任何人都可以用“-s”给出一个语法示例吗?

Ign*_*ams 6

$ column -t -s'*' <<< 'a*b*c'
a  b  c
Run Code Online (Sandbox Code Playgroud)