cat yourfile.txt | column -t 上述命令将打印出一个名为 yourfile.txt 的文件,并将其数据转换为用制表符分隔的列形式,然后输出到终端上。
您还可以使用参数 -s 来指定不同的字段分割符,例如:
cat yourfile.csv | column -s , -t