Vorrei inviare stdout da un processo allo stdin di un altro processo, ma anche alla console. Invio stdout a stdout + stderr, ad esempio.
Ad esempio, ho una git edit
aliasing per quanto segue:
git status --short | cut -b4- | xargs gvim --remote
Vorrei che anche l'elenco dei nomi dei file fosse inviato sullo schermo xargs
.
Quindi, c'è tee
un'utilità simile a quella che farà questo? In modo che io possa fare qualcosa del tipo:
git status --short | \
cut -b4- | almost-but-not-quite-entirely-unlike-tee | \
xargs gvim --remote
/dev/stdout
viene reindirizzato. Cioè, se si usassetee /dev/stdout
l'effetto sarebbe che tutto viene inviato axargs
due volte e nulla va al terminale.