On 2026-05-10 10:48:22 +0200, Страхиња Радић wrote:
> Дана 26/05/06 01:29PM, Christian Weisgerber написа:
> >     eval "$@" | while IFS= read line; do
> 
> Part of the `while ... read` idiom is the `-r` switch, to not strip 
> backslashes. So:
> 
>       eval "$@" |
>       while IFS= read -r line; do
>               # ...
>       done

And there's also a chance for

        printf data loss | while IFS= read -r line; do echo $line; done

Reply via email to