PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : shell syntax um einen stream auf 2 streams zu kopieren


Captain America
2003-05-25, 00:40:46
tach

will von einem befehl, zb echo, die ausgabe zu STDOUT und in eine datei letien. also wenn ich "echo hallo" ausführe, soll "hallo" auf stdout kommen und gleichzeitig in die datei hallo.txt.

wie geht das? thx

Harleckin
2003-05-25, 01:56:16
quick & dirty:

'echo hallo > hallo.txt | cat hallo.txt'


MfG

Ganon
2003-05-25, 08:42:54
Das geht auch:

'echo hallo > hallo.txt | echo hallo'