Warum wird die Programmausgabe nicht greped?

Warum wird die Programmausgabe nicht greped?

Beim Ausführen sudo wpa_supplicant -Dwext -iwlan3 -cwifi.conf 2>&1erhalte ich Folgendes:

Successfully initialized wpa_supplicant
ioctl[SIOCSIWAP]: Operation not permitted
ioctl[SIOCSIWENCODEEXT]: Invalid argument
ioctl[SIOCSIWENCODEEXT]: Invalid argument
wlan3: Trying to associate with 9c:3d:cf:fb:95:96 (SSID='Bell514' freq=2462 MHz)
wlan3: Association request to the driver failed
wlan3: Associated with 9c:3d:cf:fb:95:96
wlan3: Authentication with 9c:3d:cf:fb:95:96 timed out.

Doch wenn ich laufe:

sudo wpa_supplicant -Dwext -iwlan3 -cwifi.conf 2>&1 | grep --line-buffered wlan3

Ich bekomme nur:

ioctl[SIOCSIWAP]: Operation not permitted
ioctl[SIOCSIWENCODEEXT]: Invalid argument
ioctl[SIOCSIWENCODEEXT]: Invalid argument

Leite ich das nicht stderrrichtig um?

Antwort1

Der Pipe-Consumer grep ist zeilengepuffert. Das hat jedoch keine Auswirkungen auf den Pipe-Produzenten. Sobald Sie diese Seite der Pipeline anpassen, erzeugt grep die gewünschte Ausgabe.

verwandte Informationen