On Thu, Feb 13, 2025 at 10:27 AM Oğuz <oguzismailuy...@gmail.com> wrote:
> And yes, I am sure; if built-in printf and GNU printf differ in common use > cases that's a clear bug from the user's perspective. > There must be a bug somewhere then :-) $ printf 1 2 3 4 1 $ /bin/printf 1 2 3 4 1/bin/printf: warning: ignoring excess arguments, starting with ‘2’ $ printf '1\n' 2 1 $ /bin/printf '1\n' 2 1 /bin/printf: warning: ignoring excess arguments, starting with ‘2’ As long as the 2 printf's are not from the same source, divergence is always possible...