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

260
Visualizações
transform stream sent to a file by tee

I want to redirect the stdout and stderr of a stream both to the screen and a file. For that I'm using the tool tee. However, before that stream goes to the file, I want to transform it using a pipe. So far, I have only managed to transform the stream that goes to stdout.

Example:

echo 'hello' | tee output.txt | tr 'h' 'e'

=> this will output eello to stdout and save hello to output.txt

However what I want is to print hello to stdout and save eello to output.txt.

Note: Changing the input stream is not an option for my problem.

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

0

With bash:

echo 'hello' | tee >(tr 'h' 'e' > output.txt)

With bash and Linux:

echo 'hello' | tee /proc/$$/fd/255 | tr 'h' 'e' > output.txt

See: What is the use of file descriptor 255 in bash process

over 4 years ago · Santiago Trujillo Relatório

0

You can do that in a single awk without multiple pipes:

echo 'hello' | awk '1; {gsub(/h/, "e"); print > "output.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