Answers for "tsv to csv file bash"

0

tsv to csv file bash

# 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
Posted by: Guest on April-13-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language