Jim Meyering <[EMAIL PROTECTED]> wrote:
> It should also include ENAMETOOLONG:
>
>   $ rm -rf /t/$(printf %0257 1)/x 2> /dev/null || echo bug
>   bug

Whoops.
Two problems above: most people don't have a /t directory.
and printf needs a format character:

  $ rm -rf $(printf %0257d 1)/x 2> /dev/null || echo bug
  bug


_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to