📜  tsv 到 csv 文件 bash - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:37.540000             🧑  作者: Mango

代码示例1
# On OSX you cannot use \t for tab.  
# Instead cntrl+v then insert a literal tab after s/
sed 's/ /,/g' input_file > output_file