命令“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
命令“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”的语法示例吗?
$ column -t -s'*' <<< 'a*b*c'
a b c