Re: [exim] bash or perl question

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Gareth Hastings
Datum:  
To: exim-users
CC: Jack Bailey
Betreff: Re: [exim] bash or perl question
> How about:
>
> cat file | awk -F. '{ printf("%s.%s.%s.%s\n", $4, $3, $2, $1); }'



Ah, I forgot you could specify the delimiter with -F!!

cat file | awk -F. '{print $4"."$3"."$2"."$1}'


(Less typing than above!!!!)



Gareth