## sed ```base sed 's/,/\n/g' a.txt > b.txt ``` ## awk ```bash awk -F',' '{ for( i=1; i<=NF; i++ ) print $i }' a.txt > b.txt ```