“Przekieruj standardowe wyjście” Kod odpowiedzi

Przekieruj standardowe wyjście

$ ./command file1 file2 file3 | sed "s/^/Robot says: /"
stderr file2
Robot says: stdout file1
Robot says: stdout file3
Newbie

Przekieruj standardowe wyjście

# Redirect to stdout, so it comes through the pipe
$ echo "no changes" >&1 | sed "s/no/some/"
some changes
# Redirect to stderr, so it does not come through
$ echo "no changes" >&2 | sed "s/no/some/"
no changes
Newbie

Odpowiedzi podobne do “Przekieruj standardowe wyjście”

Pytania podobne do “Przekieruj standardowe wyjście”

Więcej pokrewnych odpowiedzi na “Przekieruj standardowe wyjście” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu