Re: [exim] bash or perl question

Top Page
Delete this message
Reply to this message
Author: Gareth Hastings
Date:  
To: exim-users
CC: Jack Bailey
Subject: 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