История изменений
Исправление
cx,
(текущая версия)
:
while read s; do echo "$s"; done <<< $(grep '1' tfile )
1 123 1234321
grep '1' tfile | while read s; do echo "$s"; done
1
123
1234321
Исходная версия
cx,
:
while read s; do echo -e "$s"; done <<< $(grep '1' tfile )
1 123 1234321
grep '1' tfile | while read s; do echo -e "$s"; done
1
123
1234321