Почему вывод программы не обрабатывается?

Почему вывод программы не обрабатывается?

Когда я бегу, sudo wpa_supplicant -Dwext -iwlan3 -cwifi.conf 2>&1я получаю:

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.

Но когда я бегу:

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

Я получаю только:

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

Я неправильно перенаправляю stderr?

решение1

Потребитель конвейера, grep, буферизуется строкой. Но это не влияет на производитель конвейера. Как только вы настроите эту сторону конвейера, grep выдаст желаемый вывод.

Связанный контент