Ausgabe zweimal umleiten

6

Ich möchte meine Ausgabe zweimal über eine Befehlszeile umleiten

Zum Beispiel:

comp.reg $T_GDS_MASTER/bin.new $T_GDS_MASTER/bin.old > $T_GDS/log/comp.reg.out 2>&1

Ich möchte, dass dieser Befehl auch auf dem Bildschirm ausgegeben wird. Wie kann ich das machen?

Malfist
quelle

Antworten:

13

Der gesuchte Befehl lautet tee. Die vollständige Syntax finden Sie hier .

soandos
quelle
1

Schauen Sie sich tee an - lesen Sie von der Standardeingabe und schreiben Sie in die Standardausgabe und Dateien. script - Typoskript der Terminalsitzung erstellen - möglicherweise auch von Interesse.

Sardathrion
quelle
1

tee ist ein Identitätsfilter, er kann das Ergebnis in stdout ausgeben und speichern:

tee

Redirect output to multiple files, copies standard input to standard 
output and also to any files given as arguments. This is useful when you 
want not only to send some data down a pipe, but also to save a copy.

Syntax
      tee [options]... [file]...

Options
   -a
   --append
        Append standard input to the given files rather than overwriting
        them.

   -i
   --ignore-interrupts'
        Ignore interrupt signals.

Example:

   ps -ax | tee processes.txt | more

If a file being written to does not already exist, it is created.
If a file being written to already exists, the data it previously 
contained is overwritten unless the `-a' option is used.
ycshao
quelle