linux - 在 shell 中将 .txt 转换为 .csv - IT工具网 (coder.work)
最佳答案
只有 sed,没有别的
sed 's/ \+/,/g' ifile.txt > ofile.csv
文件目录.csv
1,4,22.0,3.3,2.3
2,2,34.1,5.4,2.3
3,2,33.0,34.0,2.3
4,12,3.0,43.0,4.4
标签:shell,中将,sed,2.3,txt,csv
From: https://www.cnblogs.com/hanwei666/p/17148604.html