Timeline for split string to two parts using sed or awk or perl or bash
Current License: CC BY-SA 4.0
4 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Oct 8, 2018 at 18:13 | vote | accept | Sincerity | ||
| Oct 19, 2018 at 15:44 | |||||
| Oct 8, 2018 at 18:12 | history | edited | user88036 | CC BY-SA 4.0 |
added 70 characters in body
|
| Oct 8, 2018 at 18:09 | comment | added | steeldriver |
There's really no need for sed here - just set the FS to include - i.e. awk -F'[ -]' '{print $1, $2; print $1, $3}'
|
|
| Oct 8, 2018 at 17:58 | history | answered | user88036 | CC BY-SA 4.0 |