Padding diff result


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Padding diff result
# 1  
Old 06-02-2013
Padding diff result

Hi,

Is there a way to add padding to a diff result in unix so number of "< .." lines will be equal to number of "> .." lines?
For example, if the original result is:

Code:
9a10
> "line which exists only in one file"

The changed result would be:

Code:
9a10
< "noMatch"
---
> "line which exists only in one file"

Thanks
# 2  
Old 06-02-2013
And if you wrote code to do that what would you do with the output? (What I'm asking is: what are your trying to acheive? --the answer is not "padding diff output")

Maybe
Code:
diff -y

is what you want, to give you some sort of answer.
# 3  
Old 06-03-2013
Hi jim,
I have two columns in each file, and I'd like to combine them like this:

file 1:
Code:
green 3
red 2
blue 1

file 2:
Code:
green 5
blue 6

output:
Code:
green 3 5
red 2 -
blue 1 6

And I already wrote a code which can solve the problem if "file 2" has an a dummy line

Thanks

Last edited by Scott; 06-03-2013 at 02:17 PM.. Reason: Code tags
# 4  
Old 06-03-2013
Quote:
Originally Posted by Somename
Hi jim,
I have two columns in each file, and I'd like to combine them like this:

file 1:
green 3
red 2
blue 1

file 2:
green 5
blue 6

output:
green 3 5
red 2 -
blue 1 6

And I already wrote a code which can solve the problem if "file 2" has an a dummy line

Thanks
That sort of thing is best doable with awk (perl) using associative (hash) arrays...
# 5  
Old 06-03-2013
OK thanks =)
# 6  
Old 06-03-2013
Hi.

I would use join:
Code:
$ join -o 0,1.2,2.2 -a 1 -e - <( sort z1) <(sort z2)
blue 1 6
green 3 5
red 2 -

Using these versions:
Code:
bash GNU bash 3.2.39
sort (GNU coreutils) 6.10
join (GNU coreutils) 6.10

See man pages for details.

Best wishes ... cheers, drl
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to compare the current result with previous line result.?

Hi Gurus, I have requirement to compare current result with previous reuslt. The sample case is below. 1 job1 1 1 job2 2 1 job3 3 2 job_a1 1 2 job_a2 2 2 job_a3 3 3 job_b1 1 3 job_b2 2 for above sample file, GID is group ID, for input line, the job run... (1 Reply)
Discussion started by: ken6503
1 Replies

2. Shell Programming and Scripting

Diff 3 files, but diff only their 2nd column

Guys i have 3 files, but i want to compare and diff only the 2nd column path=`/home/whois/doms` for i in `cat domain.tx` do whois $i| sed -n '/Registry Registrant ID:/,/Registrant Email:/p' > $path/$i.registrant whois $i| sed -n '/Registry Admin ID:/,/Admin Email:/p' > $path/$i.admin... (10 Replies)
Discussion started by: kenshinhimura
10 Replies

3. Shell Programming and Scripting

serach diff filename in diff location using shell scripting

Hi, I am new to shell scripting. please help me to find out the solution. I need a script where we need to read the text file(consists of all file names) and get the file names one by one and append the date suffix for each file name as 'yyyymmdd' . Then search each file if exists... (1 Reply)
Discussion started by: Lucky123
1 Replies

4. Shell Programming and Scripting

.procmailrc and uudeview (put attachments from diff senders to diff folders)

Moderator, please, delete this topic (1 Reply)
Discussion started by: optik77
1 Replies

5. Shell Programming and Scripting

Find diff bet 2 files and store result in another file

Hi I want to compare 2 files. The files have the same amount of rows and columns. So each line must be compare against the other and if one differs from the other, the result of both must be stored in a seperate file. I am doing this in awk. Here is my file1: Blocks... (2 Replies)
Discussion started by: ladyAnne
2 Replies

6. Shell Programming and Scripting

compare two files, diff the result

Hi Everyone, 1.txt 00:01:01 asdf 00:33:33 1234 00:33:33 0987 00:33:33 12 00:33:33 444 2.txt vvvv|ee 444|dd33|ee dddd|ee 12|ee 3ciur|fdd the output should be: (6 Replies)
Discussion started by: jimmy_y
6 Replies

7. Shell Programming and Scripting

diff result makes no sense

Hi, I have written a small shellscript Imagine dbalt.txt already existed... " .... touch report.txt lynx -dump "http://site.com/index.htm" > site1.txt lynx -dump "http://site.com/index2.htm" > site2.txt grep -E 'Nummer: |EUR' site1.txt > preis1.txt grep -E 'Nummer: |EUR' site2.txt >... (2 Replies)
Discussion started by: Blackbox
2 Replies

8. Shell Programming and Scripting

Simulate SVN diff using plain diff

Hi, svn diff does not work very well with 2 local folders, so I am trying to do this diff using diff locally. since there's a bunch of meta files in an svn directory, I want to do a diff that excludes everything EXCEPT *.java files. there seems to be only an --exclude option, so I'm not sure... (3 Replies)
Discussion started by: ackbarr
3 Replies

9. Shell Programming and Scripting

ls -R and then diff on those result

Hi, I have two similar directory structures. One is the latest dev environment and the other is a previous version of the same dev environment. I need to do a diff on the .cpp .c .java and .h files. Hence I need a list of all the files of the above pattern so that I can diff then... (3 Replies)
Discussion started by: vino
3 Replies

10. Shell Programming and Scripting

diff 2 files; output diff's to 3rd file

Hello, I want to compare two files. All records in file 2 that are not in file 1 should be output to file 3. For example: file 1 123 1234 123456 file 2 123 2345 23456 file 3 should have 2345 23456 I have looked at diff, bdiff, cmp, comm, diff3 without any luck! (2 Replies)
Discussion started by: blt123
2 Replies
Login or Register to Ask a Question