bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

join 5.2.1 (blank separator not accepted for arguments to -o)


From: Philip Clayton
Subject: join 5.2.1 (blank separator not accepted for arguments to -o)
Date: Fri, 10 Dec 2004 14:58:16 +0000
User-agent: Mozilla Thunderbird 0.9 (X11/20041127)

Both man and info documentation state that either a blank or comma can be used to separate (M.N) values in the argument to -o. It appears that only comma is now accepted. Therefore a problem seems to exist with either the documentation or the implementation.


For example:

address@hidden test]$ join --version
join (coreutils) 5.2.1
Written by Mike Haertel.

Copyright (C) 2004 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
address@hidden test]$ cat file1
a a1
b b1
c c1

address@hidden test]$ cat file2
a a2
b b2
c c2

address@hidden test]$ join -o 1.2,2.2 file1 file2
a1 a2
b1 b2
c1 c2

address@hidden test]$ join -o 1.2 2.2 file1 file2
join: too many non-option arguments
Try `join --help' for more information.
address@hidden test]$


The last command works using join 4.5.3.

Please can you confirm whether a problem does exist and, if so, whether it is in the documentation or the implementation.

Thanks
Phil Clayton





reply via email to

[Prev in Thread] Current Thread [Next in Thread]