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
Jifty::Handler(3pm)					User Contributed Perl Documentation				       Jifty::Handler(3pm)

NAME
Jifty::Handler - Methods related to the finding and returning content SYNOPSIS
use Jifty; Jifty->new(); my $handler = Jifty::Handler->new; $handler->handle_request( $env ); DESCRIPTION
Jifty::Handler provides methods required to find and return content to the browser. "handle_request", for instance, is the main entry point for HTTP requests. new Create a new Jifty::Handler object. Generally, Jifty.pm does this only once at startup. view_handlers Returns a list of modules implementing view for your Jifty application. You can override this by specifying: framework: View: Handlers: - Jifty::View::Something::Handler - Jifty::View::SomethingElse::Handler setup_view_handlers Initialize all of our view handlers. view ClassName Returns the Jifty view handler for "ClassName". psgi_app_static Returns a closure for PSGI application that handles all static content, including plugins. psgi_app Returns a closure for PSGI application. handle_request When your server process (be it Jifty-internal, FastCGI or anything else) wants to handle a request coming in from the outside world, you should call "handle_request". cleanup_request Dispatchers should call this at the end of each request, as a class method. It flushes the session to disk, as well as flushing Jifty::DBI's cache. perl v5.14.2 2011-04-07 Jifty::Handler(3pm)