Formating/inserting the content


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Formating/inserting the content
# 1  
Old 10-21-2009
MySQL Formating/inserting the content

Hi All,

I have a two different files with below informations.

First file contains the content are as below:

Quote:
Working file: /view/addtoform.jsp
date: 2009/09/30 04:44:22; author:guest
Fix for 2365 - Omniture

Working file: /common/pageerror.html
date: 2009/09/30 15:02:32; author: guest3
Fix for bug # 2092 :

Working file: /common/servererror.jsp
date: 2009/09/30 12:40:02; author: guest1
Including Susie's comments for servererror copy change
Second file contents are as below:

Quote:
File: addtoform.jsp Status: File had conflicts on merge
File:p:p: pageerror.html Status: File had conflicts on merge
File: servererror.jsp Status: File had conflicts on merge
Now the problem is i need to insert the respective file name and status infomration from the second file into the first file exactly next to its respective file name.

Thanks in advance for suggestions/solutions.

Regards,
vino

Last edited by vino_hymi; 10-22-2009 at 04:24 AM..
# 2  
Old 10-21-2009
That close enough?

Code:
$> cat file1
Working file: /view/addtoform.jsp
date: 2009/09/30 04:44:22; author:guest
Fix for 2365 - Omniture

Working file: /common/pageerror.html
date: 2009/09/30 15:02:32; author: guest3
Fix for bug # 2092 :

Working file: /common/servererror.jsp
date: 2009/09/30 12:40:02; author: guest1
Including Susie's comments for servererror copy change

Code:
> cat file2
File: addtoform.jsp Status: File had conflicts on merge
File:p:p: pageerror.html Status: File had conflicts on merge
File: servererror.jsp Status: File had conflicts on merge

Code:
$> awk -F" |/" 'NR==FNR {_[$2]=$0; next} /^Working/ && _[$NF] {print $0"\n"_[$NF];next} {print}' file2 file1
# Output:
Working file: /view/addtoform.jsp
File: addtoform.jsp Status: File had conflicts on merge
date: 2009/09/30 04:44:22; author:guest
Fix for 2365 - Omniture

Working file: /common/pageerror.html
File:p:p: pageerror.html Status: File had conflicts on merge
date: 2009/09/30 15:02:32; author: guest3
Fix for bug # 2092 :

Working file: /common/servererror.jsp
File: servererror.jsp Status: File had conflicts on merge
date: 2009/09/30 12:40:02; author: guest1
Including Susie's comments for servererror copy change


Last edited by zaxxon; 10-21-2009 at 11:32 AM.. Reason: formatting
# 3  
Old 10-22-2009
Hi Zaxxon,

Thanks for the quick response.

I am able to execute. But it doesn't work when there is multiple entries in file as below. Please let me know whether i need to update any thing in the awk code.

file1:

Code:
Working file: /emerchandisingview/form.jsp
date: 2009/09/30 04:44:22;  author: gue
Fix for 2365 - Omniture

Working file: /common/pageerror.html
date: 2009/09/30 15:02:32;  author: gue
Fix for bug # 2092 : H.S.INTERNET ORDERS MTEP - Please change copy on server error page.

Working file: /common/servererrorlayout.jsp
date: 2009/09/30 12:40:02;  author: gue
Including Susie's comments for servererror copy change

Working file: /common/static_version.jspf
date: 2009/09/29 15:23:16;  author: gue
Helping for clearing merging Issue

Working file: /css/ie6.css
date: 2009/10/15 15:39:18;  author: gue
Fix for 2332

Working file: /css/module.css
date: 2009/10/15 15:40:35;  author: gue
Fix for 2332

Working file: r/home/containeranonymous.jsp
date: 2009/09/30 09:34:04;  author: gue
Fix for 2718

Working file: /js/store.js
date: 2009/09/29 15:18:44;  author: gue
Helping madan for clearing merging Issue

Working file: /products/information.jsp
date: 2009/10/14 12:19:16;  author: gue
Fix for 3082[wide screen issue on product deails page]

Working file: /fragments/areaform.jsp
date: 2009/10/01 10:16:58;  author: gue
Fixed defect #2659

file2:
Code:
form.jsp    Status: File had conflicts on merge
pageerror.html  Status: File had conflicts on merge
servererrorlayout.jsp   Status: File had conflicts on merge
static_version.jspf     Status: File had conflicts on merge
ie6.css                 Status: File had conflicts on merge
module.css              Status: File had conflicts on merge
containeranonymous.jsp  Status: File had conflicts on merge
store.js           Status: File had conflicts on merge
information.jsp  Status: File had conflicts on merge
areaform.jsp       Status: File had conflicts on merge



---------- Post updated at 09:42 AM ---------- Previous update was at 08:35 AM ----------



The issue is in the second file.

The space between the file name status word.
Please let me know how to ignore the space and execute sucessfully.

Code:
servererrorlayout.jsp   Status: File had conflicts on merge
static_version.jspf     Status: File had conflicts on merge
ie6.css                 Status: File had conflicts on merge


Last edited by vino_hymi; 10-22-2009 at 12:32 AM..
# 4  
Old 10-22-2009
Code:
awk -F" |/" 'NR==FNR {_[$1]=$0; next} /^Working/ && _[$NF] {print $0"\n"_[$NF];next} {print}' file2 file1
                         ^
                         |
# This is the 1st column in file2; in your former example this was field2

Of course the code will not automatically work when the input files change.
If there are more changes coming I recommend to get in touch with awk and play around with it to be able to change/write it accordingly.

If you have particular problems feel free to ask.
# 5  
Old 10-22-2009
Whether is it possible to trim the spaces in the input file file2 to specific format before we run the awk code.

Existing:
Code:
addtotrolleyform.jsp        Status: File had conflicts on merge
page-server-error.html   Status: File had conflicts on merge
servererrorlayout.jsp Status: File had conflicts on merge

Modified:
Code:
addtotrolleyform.jsp Status: File had conflicts on merge
page-server-error.html Status: File had conflicts on merge
servererrorlayout.jsp Status: File had conflicts on merge

# 6  
Old 10-22-2009
Code:
awk -F" |/" 'NR==FNR {sub(/[[:space:]]+/," "); _[$1]=$0; next} /^Working/ && _[$NF] {print $0"\n"_[$NF];next} {print}' file2 file1

# 7  
Old 10-23-2009
Data

It works perfectly.Smilie

Thanks a lot.

---------- Post updated 10-23-09 at 08:35 AM ---------- Previous update was 10-22-09 at 12:52 PM ----------

Whether there is any scope to remove the filename(including blank spaces) in the second line before Status string.
Present:
Code:
Working file: /common/servererror.jsp
servererror.jsp  Status: File had conflicts on merge
date: 2009/09/30 12:40:02; author: guest1
Including Susie's comments for servererror copy change

Required:
Code:
Working file: /common/servererror.jsp
Status: File had conflicts on merge
date: 2009/09/30 12:40:02; author: guest1
Including Susie's comments for servererror copy change

I tried by using sed command as below but unable to make it.

Code:
sed 's/^[0-9a-zA-z_-][.][ ]Status:/Status:/g'



can some one correct me.

Last edited by vino_hymi; 10-23-2009 at 08:10 AM.. Reason: Elaborated
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File formating

I need to create a fixed width file based on the column lengths. lets assume I have six(this may be dynamic) fields each are of different length column1=6 #size of the column column2=3 column3=2 column4=3 column5=4 column6=5 I tried below code snippet but it is not working echo... (4 Replies)
Discussion started by: gvkumar25
4 Replies

2. UNIX for Beginners Questions & Answers

File formating help

Hi all, I am having the file below I need that as below Thanks, Arun (12 Replies)
Discussion started by: arunkumar_mca
12 Replies

3. Shell Programming and Scripting

Formating questions

Hi, I have a data as follows in some files, i want to change CHAR(2-20) to VARCHAR(2-20). I should not touch any line with CHAR(1) Example: Input: cur_rev_stage_cd CHAR(5) CHARACTER SET LATIN NOT CASESPECIFIC NOT NULL, prev_rev_stage_cd CHAR(5) CHARACTER SET LATIN NOT... (7 Replies)
Discussion started by: srikanth38
7 Replies

4. Shell Programming and Scripting

Facing issues with Content-Type:application/x-download Content-Disposition:attachment

I am in the process of developing a perl cgi page. I had succeeded in developing the page but there are few errors/issues with the page. description about cgi page: My CGI page retrieves all the file names from an directory and displays the files in drop down menu for downloading the... (5 Replies)
Discussion started by: scriptscript
5 Replies

5. Shell Programming and Scripting

Inserting file content into a searched pattern

Hi, i have to insert the content of source.txt into the searched pattern of the file second.txt. $cat source.txt One Two Three . . $cat second.txt This is second file pattern match start here pattern match end here end of the file so the result will be like this (4 Replies)
Discussion started by: posix
4 Replies

6. Shell Programming and Scripting

Formating output

Hello Team i have a file with following data (as columns). I need implement a syntax like below for altering table ALTER TABLE1 TABLENAME ADD COLUMN COL1 CHAR(5) NOT NULL WITH DEFAULT ADD COLUMN COL2 CHAR(5) .. .. ADD COLUMN COLn CHAR(5) NOT NULL... (1 Reply)
Discussion started by: rocking77
1 Replies

7. Shell Programming and Scripting

Text formating

Dear all I had input file as mention below and want op as mention. Kindly let me knw possible ways. Regards Jaydeep INPUT: RXOTX-48-1 2A 34 2B 35 RXOTX-499-2 2C 32 RXOTX-4-1 2D 23 OUTPUT: (3 Replies)
Discussion started by: jaydeep_sadaria
3 Replies

8. Shell Programming and Scripting

formating output

Hi all, I want to start a new topic on this matter I have this script, #!perl use strict; use warnings; use Data::Dumper; open my $log, '>', 'log-external.txt' or die "Could not open log: $!"; print $log "Subnet,Static,DHCP,Unused\n"; open my $dump, '>', 'dump.log' or die... (2 Replies)
Discussion started by: richsark
2 Replies

9. Shell Programming and Scripting

Output formating

Dear All I am stuck in one problem. Kindly help me. I am taking below mention file as input file and want some op file as mention below. Kindly send me all possible suggestion and query. Thnaks Jaydeep bELOW IS THE INPUT FILE: *** Connected to BSCANGR ***... (1 Reply)
Discussion started by: jaydeep_sadaria
1 Replies

10. Shell Programming and Scripting

formating output

I have a file proc.txt which contains the below one. Content-type: text/html <H2>No query</H2> infodba-marabou:/tmp => export QUERY_STRING="IMAN_server_report=full" infodba-marabou:/tmp => $IMAN_ROOT/web/htdocs/cgi-bin/iman > /tmp/proc.txt infodba-marabou:/tmp => cat proc.txt... (20 Replies)
Discussion started by: Krrishv
20 Replies
Login or Register to Ask a Question