POSIX read -d option is not implemented
Pádraig Brady <[email protected]> Wed, 10 Dec 2025 15:42:26 +0000
| Newsgroups | org.kernel.vger.dash |
|---|---|
| Message-ID | <[email protected]> |
It's especially useful to process NUL delimited input like: find -print0 | while IFS= read -r -d'' file; do process "$file"; done See https://pubs.opengroup.org/onlinepubs/9799919799/utilities/read.html thanks, Padraig