Re: [exim] bash or perl question

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: Daniel Tiefnig
Data:  
Para: exim-users
Assunto: 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.