Formating/inserting the content


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Formating/inserting the content
# 8  
Old 10-23-2009
When we already have awk doing lot's of things, we should not switch to cut inbetween ^^:

Code:
$> awk -F" |/" 'NR==FNR {_[$1]=$0; next} /^Working/ && _[$NF] {sub(/^[^[:space:]]*[[:space:]]+/,"",_[$NF]); print $0"\n"_[$NF];next} {print}' file2 file1
Working file: /emerchandisingview/form.jsp
Status: File had conflicts on merge
date: 2009/09/30 04:44:22;  author: gue
Fix for 2365 - Omniture

Working file: /common/pageerror.html
Status: File had conflicts on merge
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.

...
...

 
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
bookman(1)																bookman(1)

NAME
bookman - Generate a book from man pages SYNOPSIS
bookman [-pPxn] [-o outfile] [-a author] [-d date] [-r release] [-t title] [-v volume] [-c coverfile] [manfile] DESCRIPTION
bookman compiles a set of man pages files specified by manfile arguments, or if no manfile is given, filenames are read from standard input. OPTIONS
-p PDF output format. -P Postscript output format. -x X11 previewing, using gxditview(1). -n no format, output is direct gtroff intermediate format. -o outfile Output in file outfile. Default is standard output. -a author Set the author, on the cover page. -d date Set the date on the cover page. -r release Set the book name and release on the cover page. -t title Set the title on the cover page. -v volume Specify the name of the volume. -c coverfile Uses the file coverfile to generate the cover page, i.e. all pages preceding the table of content. coverfile must be in groff_ms(7) format. EXAMPLE
To build a reference manual from section 2 man, do: $ cd /usr/man/man2 $ bookman -p -t 'Unix Reference Manual' * >book.pdf SEE ALSO
man(1), mandoc(7), groff_ms(7), groff(1), troff(1), grops(1), gxditview(1), ps2pdf(1). AUTHOR
Marc Vertes <mvertes@free.fr> txt2man-1.5.5 11 April 2011 bookman(1)