2015-02-09 111 views

回答

1

FILE.CSV:

"1","a","me,and,you" 

convertFile.sh

#!/bin/bash 
    IFS="," 
    while read f1 f2 
    do 
      echo -e $f1\t$f2 
    done < file.csv 
相關問題