# cat data.csv
kris, florida, 29
jenn, florida, 25
bob, texas,  35

 

#column -t data.csv   (column默认使用为空格)
kris, florida, 29
jenn, florida, 25
bob, texas, 35

 

指定分隔符

# cat data.csv
kris|florida|29
jenn|florida|25
bob|texas|35


# column -t -s "|" data.csv
kris florida 29
jenn florida 25
bob texas 35

 

 

 

相关文章:

  • 2022-01-01
  • 2022-12-23
  • 2021-04-07
  • 2022-12-23
  • 2021-12-04
  • 2021-12-19
  • 2022-12-23
  • 2021-12-11
猜你喜欢
  • 2021-05-23
  • 2022-12-23
  • 2021-09-28
  • 2021-11-25
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
相关资源
相似解决方案