mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-26 06:17:01 +00:00
Update README.md
This commit is contained in:
parent
e7d3e325d2
commit
bf4104af92
@ -419,10 +419,15 @@ awk '{printf("%s\t%s\n",NR,$0)}'
|
||||
|
||||
e.g.
|
||||
seperate
|
||||
|
||||
David cat,dog
|
||||
|
||||
into
|
||||
|
||||
David cat
|
||||
|
||||
David dog
|
||||
|
||||
detail here: http://stackoverflow.com/questions/33408762/bash-turning-single-comma-separated-column-into-multi-line-string
|
||||
```bash
|
||||
awk '{split($2,a,",");for(i in a)print $1"\t"a[i]}' file
|
||||
|
Loading…
Reference in New Issue
Block a user