Re: loop with awk
| Newsgroups | gmane.editors.sed.user |
|---|---|
| Message-ID | <CAEE75_1V9uaY_nLeMmgrHfN0wawujH4ZPPLcYwGPtm1yb=6cjg@mail.gmail.com> |
sed -E 's/([^;]*);([^;]*);([^;]*);.*/&;\L\2+\3/' fileA.txt
awk '{print $0,tolower($2"+"$3)}' FS=\; OFS=\; fileA.txt
[Non-text portions of this message have been removed]