|
From: | John McKown |
Subject: | Re: bash "while do echo" can't function correctly |
Date: | Wed, 13 Apr 2016 06:49:51 -0500 |
On Wed, Apr 13, 2016 at 2:34 PM, John McKown <john.archie.mckown@gmail.com> wrote:...though printf should be preferred over echo:
while read -r line; do printf '%s\n' "$line"; done < test.txtI've never read about using printf in preference to echo. Why is that? I have used it myself in special cases, such as wanting leading zeros (i=0;printf '%03d\n' "${i}";)Posix says:It is not possible to use echo portably across all POSIX systems unless both -n (as the first argument) and escape sequences are omitted.
The printf utility can be used portably to emulate any of the traditional behaviors of the echo utility as follows (assuming that IFS has its standard value or is unset)
[Prev in Thread] | Current Thread | [Next in Thread] |