bug#59819: Acknowledgement (Bug Report: [coreutils] echo command interprets wildcards, when read with the 'cat' command from a file, in a for-in loop)

2022-12-04 Thread th3_d0ctor
I missed the quote. Sorry for my bad. Kind regards Am Sun, 04 Dec 2022 16:54:02 + schrieb help-debb...@gnu.org (GNU bug Tracking System): > Thank you for filing a new bug report with debbugs.gnu.org. > > This is an automatically generated reply to let you know your message > has been

bug#59827: [PATCH] info date to be explicit about the date formats

2022-12-04 Thread Marc Chantreux
hello coreutils maintainers, I would like info page of the date to be explicit about the ready to use date formats so users can pick them as example for their own ones (as example: just remove the timezone information). regards, marc --- doc/coreutils.texi | 5 + 1 file changed, 5

bug#59821: 9.1: du Aborted (corrupt filesystem)

2022-12-04 Thread Luke Dashjr
Version: sys-apps/coreutils-9.1-r1 (Gentoo) Context: Linux has a long-standing bug which leads to ext4 RAM dishs (zram specifically) getting corrupted randomly. This manifests as various newfstatat calls returning -1 errno=EUCLEAN (Structure needs cleaning). The `du` tool, when it encounters

bug#59819: Bug Report: [coreutils] echo command interprets wildcards, when read with the 'cat' command from a file, in a for-in loop

2022-12-04 Thread Andreas Schwab
On Dez 04 2022, th3_d0ctor wrote: > $ echo "*" >b; for i in `cat b`; do echo "$i"; done > ==> list current working directory instead of printing the wildcard '*' That's how it is supposed to work, since file name expansion is performed after all other expansions (just before quote removal).

bug#59818: incomplete type 'struct pollfd', etc., when compiling tail on MacOS (patch included)

2022-12-04 Thread Dennis Williamson
I received the errors for tail.c shown below when compiling coreutils on MacOS (11.6). Adding __APPLE__ to the #if defined for poll.h fixes the issue (see the diff at the bottom). Making this change matches that line to the one within check_output_alive(). commit