Sponsored Content
Top Forums Shell Programming and Scripting Merging two text files side by side Post 302745981 by FishTornado on Tuesday 18th of December 2012 02:33:41 PM
Old 12-18-2012
Merging two text files side by side

Hi everyone,

I need to merge two files side by side

The files look something like this:
Code:
HOSTNAME
 fishtornado-K52F 127.0.1.1
UPTIME
 20:17:01 up 2:19, 3 users, 
 load average: 0.00, 0.04, 0.05
DISK USAGE
 (Size/Used/Avail/Use%)
 29G 6.5G 21G 25%
RUN QUEUE
  PID COMMAND         USER     %CPU %MEM
 2035 chromium-browse 1000      3.1 10.8
 1955 chromium-browse 1000      1.9  2.5
 1708 gnome-shell     1000      1.5  2.5
 1195 Xorg            root      1.3  0.6
 2614 chromium-browse 1000      1.0  1.5

The desirable output would be something similar to this:
Code:
HOSTNAME	                                HOSTNAME
 fishtornado-K52F 127.0.1.1	                 fishtornado-K52F 127.0.1.1
UPTIME	                                        UPTIME
 21:06:05 up 3:08, 3 users, 	                 21:06:08 up 3:08, 3 users, 
 load average: 0.05, 0.04, 0.05	                 load average: 0.05, 0.04, 0.05
DISK USAGE	                                DISK USAGE
 (Size/Used/Avail/Use%)	                         (Size/Used/Avail/Use%)
 29G 6.5G 21G 25%	                         29G 6.5G 21G 25%
RUN QUEUE	                                RUN QUEUE     
  PID COMMAND         USER     %CPU %MEM          PID COMMAND         USER     %CPU %MEM
 2035 chromium-browse 1000      2.5  9.5	 2035 chromium-browse 1000      2.5  9.5
 1955 chromium-browse 1000      2.3  2.6	 1955 chromium-browse 1000      2.3  2.6
 4584 chromium-browse 1000      2.2  1.9	 4584 chromium-browse 1000      2.2  1.9
 1708 gnome-shell     1000      1.6  2.5	 1708 gnome-shell     1000      1.6  2.5
 1195 Xorg            root      1.4  0.6	 1195 Xorg            root      1.4  0.6

I tried using the paste command and various awk scripts but the rows always came out to be scrambled.

Like this (result of paste):
Code:
HOSTNAME	HOSTNAME
 fishtornado-K52F 127.0.1.1	 fishtornado-K52F 127.0.1.1
UPTIME	UPTIME
 21:06:05 up 3:08, 3 users, 	 21:06:08 up 3:08, 3 users, 
 load average: 0.05, 0.04, 0.05	 load average: 0.05, 0.04, 0.05
DISK USAGE	DISK USAGE
 (Size/Used/Avail/Use%)	 (Size/Used/Avail/Use%)
 29G 6.5G 21G 25%	 29G 6.5G 21G 25%
RUN QUEUE	RUN QUEUE
  PID COMMAND         USER     %CPU %MEM	  PID COMMAND         USER     %CPU %MEM
 2035 chromium-browse 1000      2.5  9.5	 2035 chromium-browse 1000      2.5  9.5
 1955 chromium-browse 1000      2.3  2.6	 1955 chromium-browse 1000      2.3  2.6
 4584 chromium-browse 1000      2.2  1.9	 4584 chromium-browse 1000      2.2  1.9
 1708 gnome-shell     1000      1.6  2.5	 1708 gnome-shell     1000      1.6  2.5
 1195 Xorg            root      1.4  0.6	 1195 Xorg            root      1.4  0.6

Thank you in advance for your help.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Merge 2 text files to one text file side by side

Inquiring minds want to know.... I need to take two files that I have latitude and longitude values and then combine them into one file with the values side by side separated by a space. the first file is temp113-lat.txt and the second is temp113-lon.txt. They each have values listed in the... (15 Replies)
Discussion started by: ahinkebein
15 Replies

2. Shell Programming and Scripting

Script to place selected columns from a group of files side by side in a new file

Hi Everyone, I need a shell/perl script to bring selected columns from all the files located in a directory and place them in a new file side by side. File1: a b c d 2 3 4 5 f g h i .......... File2: I II III IV w x y z .............. and so on many files are there...... (8 Replies)
Discussion started by: ks_reddy
8 Replies

3. Shell Programming and Scripting

How to Merge / combine / join / paste 2 text files side-by-side

I have 2 text files, both have one simple, single column. The 2 files might be the same length, or might not, and if not, it's unknown which one would be longer. For this example, file1 is longer: ---file1 Joe Bob Mary Sally Fred Elmer David ---file2 Tomato House Car... (3 Replies)
Discussion started by: cajunfries
3 Replies

4. Web Development

Cannot access Apache web server from Wan side, only Lan side.

I have installed WAMPSERVER 2.0 on my windows vista x64 system but still am having issues with getting the webserver to be seen outside my local network. It is working fine within my local network. Been through several setup tutorials so far, no dice still. For testing purposes I have... (1 Reply)
Discussion started by: davidmanvell
1 Replies

5. Shell Programming and Scripting

Paste two file side by side together based on specific pattern match problem

Input file_1: P78811 P40108 O17861 Q6NTW1 P40986 Q6PBK1 P38264 Q6PBK1 Q9CZ49 Q1GZI0 Input file_2: (6 Replies)
Discussion started by: patrick87
6 Replies

6. Shell Programming and Scripting

printing 3 files side by side based on similar values in rows

Hi I'm trying to compare 3 or more files based on similar values and outputting them into 3 columns. For example: file1 ABC DEF GHI file2 DEF DER file3 ABC DER The output should come out like this file1 file2 file3 ABC ABC (4 Replies)
Discussion started by: zerofire123
4 Replies

7. Shell Programming and Scripting

AWK to merge multiple files side by side

I have about 100s of files of type text in a known directory. I want to merge all files side by side. Number of lines in all the files will remain same. For example file1 contains cat dog File 2 contains rat mat Output file should be cat rat dog mat Using awk I was able to... (5 Replies)
Discussion started by: kanthrajgowda
5 Replies

8. Shell Programming and Scripting

Combining two single column files side-by-side

Hi, I am looking for a sed/awk script to join two large (~300 M) single column files (one is sorted and the other is not sorted) side-by-side. I have a shell script but its taking ages to do the task so looking for an optimized fast solution. The two files look like: File1 (sorted) a1... (1 Reply)
Discussion started by: sajal.bhatia
1 Replies

9. UNIX for Dummies Questions & Answers

Paste many files together side by side

Hi, Thank you for your help in advance :D. I have thousands of files like... file01 file02 file03 . . . file6324 I would like to paste every other file side by side so it looks like file01 file02 file03 file04 ...e.t.c file6323 file6324 (3 Replies)
Discussion started by: shaz1990
3 Replies

10. Shell Programming and Scripting

Import 2 columns from 8 .csv files into pandas df (side by side) and write a new csv

I have 8 .csv files with 16 columns and "n" rows with no Header. I want to parse each of these .csv and get column and put the data into a new.csv. Once this is done, the new.csv should have 16 columns (2 from each input.csv) and "n" rows. Now, I want to just take the average of Column from... (3 Replies)
Discussion started by: Zam_1234
3 Replies
GIT-WEB--BROWSE(1)						    Git Manual							GIT-WEB--BROWSE(1)

NAME
git-web--browse - Git helper script to launch a web browser SYNOPSIS
git web--browse [OPTIONS] URL/FILE ... DESCRIPTION
This script tries, as much as possible, to display the URLs and FILEs that are passed as arguments, as HTML pages in new tabs on an already opened web browser. The following browsers (or commands) are currently supported: o firefox (this is the default under X Window when not using KDE) o iceweasel o seamonkey o iceape o chromium (also supported as chromium-browser) o google-chrome (also supported as chrome) o konqueror (this is the default under KDE, see Note about konqueror below) o opera o w3m (this is the default outside graphical environments) o elinks o links o lynx o dillo o open (this is the default under Mac OS X GUI) o start (this is the default under MinGW) o cygstart (this is the default under Cygwin) o xdg-open Custom commands may also be specified. OPTIONS
-b <browser>, --browser=<browser> Use the specified browser. It must be in the list of supported browsers. -t <browser>, --tool=<browser> Same as above. -c <conf.var>, --config=<conf.var> CONF.VAR is looked up in the Git config files. If it's set, then its value specifies the browser that should be used. CONFIGURATION VARIABLES
CONF.VAR (from -c option) and web.browser The web browser can be specified using a configuration variable passed with the -c (or --config) command-line option, or the web.browser configuration variable if the former is not used. browser.<tool>.path You can explicitly provide a full path to your preferred browser by setting the configuration variable browser.<tool>.path. For example, you can configure the absolute path to firefox by setting browser.firefox.path. Otherwise, git web--browse assumes the tool is available in PATH. browser.<tool>.cmd When the browser, specified by options or configuration variables, is not among the supported ones, then the corresponding browser.<tool>.cmd configuration variable will be looked up. If this variable exists then git web--browse will treat the specified tool as a custom command and will use a shell eval to run the command with the URLs passed as arguments. NOTE ABOUT KONQUEROR
When konqueror is specified by a command-line option or a configuration variable, we launch kfmclient to try to open the HTML man page on an already opened konqueror in a new tab if possible. For consistency, we also try such a trick if browser.konqueror.path is set to something like A_PATH_TO/konqueror. That means we will try to launch A_PATH_TO/kfmclient instead. If you really want to use konqueror, then you can use something like the following: [web] browser = konq [browser "konq"] cmd = A_PATH_TO/konqueror Note about git-config --global Note that these configuration variables should probably be set using the --global flag, for example like this: $ git config --global web.browser firefox as they are probably more user specific than repository specific. See git-config(1) for more information about this. GIT
Part of the git(1) suite Git 2.17.1 10/05/2018 GIT-WEB--BROWSE(1)
All times are GMT -4. The time now is 05:11 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy