touch -c behaves incorrectly (non-POSIX)

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439033 POSIX says about ‘touch'[*]: -c Do not create a specified file if it does not exist. Do not write any diagnostic messages concerning this condition. [*] http://www.opengroup.org/onlinepubs/009695399/utilities/touch.html But under some conditions, ‘touch’ writes a diagnostic message when the file doesn’t exist. For instance: vin:~> mkdir dir vin:~> chmod 000 dir vin:~> /usr/bin/touch -c dir/file …

coreutils: ls –quoting-style=c and | (pipe) symbol

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432945 output of ls –quoting-style=c is incorrect when filename contains | (pipe) symbol. Steps: mkdir /tmp/bla touch “/tmp/bla/filename with | pipe” ls –quoting-style=c /tmp/bla returns: “filename with \| pipe” thanks, -Mathieu Ref: http://groups.google.com/group/comp.lang.c/browse_thread/thread/0db8070def6a4453

coreutils: ls –quoting-style=c and | (pipe) symbol

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432945 output of ls –quoting-style=c is incorrect when filename contains | (pipe) symbol. Steps: mkdir /tmp/bla touch “/tmp/bla/filename with | pipe” ls –quoting-style=c /tmp/bla returns: “filename with | pipe” thanks, -Mathieu Ref: http://groups.google.com/group/comp.lang.c/browse_thread/thread/0db8070def6a4453

coreutils: join outputs wrong field order for -v option

join – join lines of two files on a common field http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=410270 Package: coreutils Version: 5.97-5 Severity: normal the join field is incorrect for the -v version. #08-Thu-20-03-40 /tmp$ cat>|a #a1,a2,c3,a4,a5 #a21,a22,a33,a44,a55 #08-Thu-20-05-07 /tmp$ cat>|b #b1,b2,b3,c3,b5 #b21,b22,b33,b44,b55 #08-Thu-20-06-07 /tmp$ join -t, -i -1 3 -2 4 a b #c3,a1,a2,a4,a5,b1,b2,b3,b5 #08-Thu-20-06-10 /tmp$ join -v 2 -t, …

coreutils: stty reports bogus error.

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=404497 Consider the session below: $ stty -F /dev/ttyS0 9600 $ stty -F /dev/ttyS0 -g > stty.ttyS0.txt $ stty -F /dev/ttyS0 115200 $ stty -F /dev/ttyS0 `cat stty.ttyS0.txt` stty: /dev/ttyS0: unable to perform all requested operations $ stty -F /dev/ttyS0 `cat stty.ttyS0.txt` $ As far as I can tell, the (bogus) error message is due …

dd oflag=append : imply notrunc, or improve documentation

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=373736 On Mon, Jun 26, 2006 at 12:18:46PM -0400, Michael Stone wrote: > > You probably want conv=notrunc uh! thanks for the tip but still I see some kind of bug in this, lets say a documentation bug 1) conv=???? is supposed to be “convert the file as per the comma separated symbol list” IMHO, …