Re: [exim] bash or perl question

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: Gareth Hastings
Data:  
Para: exim-users
CC: Jack Bailey
Assunto: 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