As mentioned before, you regularly want to transform tsv files into csv files. While tr is a much less powerful program than sed or awk, it is much easier to use:
tr '\t' ',' < input_file > output_file
As mentioned before, you regularly want to transform tsv files into csv files. While tr is a much less powerful program than sed or awk, it is much easier to use:
tr '\t' ',' < input_file > output_file
Pingback: Stochastic Nonsense | Writing MySQL Query Results to Disk