Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

171
Vistas
Print the fist row with check the condition in awk command

File in content is

safwan@hello:~/linx$ cat 5.txt 
Name    age address email
safwan  25  India   safwan@gmail.com
Ajmal   23  India   ajmal@gmil.com

Apply a condition

awk '$2==25 {print}' 5.txt

output is

safwan@hello:~/linx$ awk '$2==25 {print}' 5.txt 
safwan  25  India   safwan@gmail.com

But I need also the first row

I expect the output is like

Name    age address email
safwan  25  India   safwan@gmail.com
over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

You can evaluate if NR == 1 or your actual condition to get the header row with your data row:

awk 'NR == 1 || $2 == 25' 5.txt

Besides there is no need to use {print} as that is the default action in awk.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda