GNU bug report logs -
#13389
echo command redhat linux OS
Previous Next
Reported by: Mohanad Azzam <mazzam.c <at> stc.com.sa>
Date: Tue, 8 Jan 2013 17:13:02 UTC
Severity: normal
Tags: notabug
Done: Bernhard Voelker <mail <at> bernhard-voelker.de>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Tue, 08 Jan 2013 18:47:50 +0100
with message-id <50EC5BC6.7040507 <at> bernhard-voelker.de>
and subject line Re: bug#13389: echo command redhat linux OS
has caused the debbugs.gnu.org bug report #13389,
regarding echo command redhat linux OS
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
13389: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13389
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Dears
Could we print values to be as three column ,each column present the values of each file.
More explanation :
I have three files ,each file include a queue of values .I need to print all the values by one command to be in one page
Thanks
[cid:image001.jpg <at> 01CDECEE.BDCB6ED0]
www.stc.com.sa<http://www.stc.com.sa/>
Mohanad S. Azzam
Senior Technical Engineer
Content Adaptation System
Operation dept. STC-B41
Contractor-RKe Technology
P Please consider the environment before printing this e-mail.
The information in this email may contain confidential material and it is intended solely for the addresses. Access to this email by anyone else is unauthorized. If you are not the intended recipient, please delete the email and destroy any copies of it, any disclosure, copying, distribution is prohibited and may be considered unlawful. Contents of this email and any attachments may be altered, Statement and opinions expressed in this email are those of the sender, and do not necessarily reflect those of Saudi Telecommunications Company (STC).
[Message part 4 (text/html, inline)]
[image001.jpg (image/jpeg, inline)]
[Message part 6 (message/rfc822, inline)]
tag 13389 notabug
thanks
On 01/08/2013 06:57 AM, Mohanad Azzam wrote:
> Dears
>
> Could we print values to be as three column ,each column present the values of each file.
>
> More explanation :
> I have three files ,each file include a queue of values .I need to print all the values by one command to be in one page
>
> Thanks
Without a sample of your data, this sounds like you
want to use join.
Given you have the 3 files X, Y and Z with the following content:
$ cat X
1 x1
2 x2
3 x3
$ cat Y
1 y1
2 y2
3 y3
$ cat Z
1 z1
2 z2
3 z3
If you don't have the line numbers, then you can easily
create them with e.g. "cat -n X".
Then you can join X and Y (column 1 will be the key),
and join the result (indicated by stdin "-") with Z:
$ join X Y | join - Z
1 x1 y1 z1
2 x2 y2 z2
3 x3 y3 z3
Have a nice day,
Berny
This bug report was last modified 12 years and 140 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.