Re: using sed to add text to csv file
Cameron Simpson <[email protected]>
| Newsgroups | gmane.editors.sed.user |
|---|---|
| Message-ID | <[email protected]> |
On 05May2012 00:16, Thierry Blanc <[email protected]> wrote: | something like | | sed ' | s|^|firstname=|; | s|,|\&lastname=|; | s|,|\&address=|; Much neater than mine. Cheers, -- Cameron Simpson <[email protected]> DoD#743 http://www.cskk.ezoshosting.com/cs/ Don't have awk? Use this simple sh emulation: #!/bin/sh echo 'Awk bailing out!' >&2 exit 2 - Tom Horsley <[email protected]>