Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

178
Visualizações
Shell script make lines in one huge file into two seperate files in one go?

Currently My shell script iterate the lines in one huge file two times: (What I want to do is just like the shell script below.)

grep 'some_text' huge_file.txt > lines_contains_a.txt
grep -v 'some_text' huge_file.txt > lines_not_contains_a.txt

but it is slow.

How to do the same thing only iterate the lines once?

Thanks!

over 4 years ago · Santiago Trujillo
2 Respostas
Responde à pergunta

0

With GNU awk:

awk '/some_text/  { print >> "lines_contains_a.txt" }
     !/some_text/ { print >> "lines_not_contains_a.txt" }' huge_file.txt
over 4 years ago · Santiago Trujillo Relatório

0

With sed:

sed -n '/some_text/  w lines_contains_a.txt
        /some_text/! w lines_not_contains_a.txt'  huge_file.txt
over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda