Linux/unix 命令“column”的语法

Linux/unix 命令“column”的语法

命令“column”的手册页显示:

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

 -s      Specify a set of characters to be used to delimit
         columns for the -t option.

我找不到如何使用参数“-s”。有人能给出一个使用“-s”的语法示例吗?

答案1

$ column -t -s'*' <<< 'a*b*c'
a  b  c

相关内容