awk + sintaxe de ajuste para SUN solaris & linux

1

precisa de ajuda sobre o seguinte

quando eu executo o seguinte comando no linux ele roda bem

 awk -v NAME=MACHINE '$1 == NAME'  /etc/hosts  

mas no SUN Solaris eu recebo o seguinte:

 awk -v NAME=MACHINE '$1 == NAME'  /etc/hosts  
 awk: syntax error near line 1 
 awk: bailing out near line 1 

como ajustar a sintaxe a seguir para ajustar também o SUN Solaris? ou mudar para caber tanto no Linux e SUN Solaris

    
por lidia 02.09.2010 / 10:15

1 resposta

0

Teste nawk ou /usr/xpg4/bin/awk ou /usr/xpg6/bin/awk em vez de awk

ou

awk 'BEGIN {NAME=MACHINE} $1 == NAME'  /etc/hosts

ou

awk -v NAME=MACHINE '$1 == NAME {print}'  /etc/hosts

ou alguma combinação dos itens acima.

    
por 02.09.2010 / 10:47

Tags