Re: [exim] bash or perl question

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Daniel Tiefnig
Datum:  
To: exim-users
Betreff: Re: [exim] bash or perl question
Gareth Hastings wrote:
> cat file | awk -F. '{print $4"."$3"."$2"."$1}'
>
> (Less typing than above!!!!)


UUOCAP (useless use of cat and pipe):

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

lg,
daniel - maybe we should request an exim-golfers ML.