![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| to break a file into 2 files after matching a pattern. | manit | UNIX for Dummies Questions & Answers | 3 | 04-01-2009 11:12 AM |
| Extract specific pattern from a file | athreyavc | Shell Programming and Scripting | 4 | 11-12-2008 04:35 AM |
| Adding specific text and spaces to each line in a text file | hertingm | Shell Programming and Scripting | 4 | 08-25-2008 02:34 PM |
| search and replace a specific text in text file? | santosham | UNIX for Dummies Questions & Answers | 4 | 06-25-2008 05:53 PM |
| Removing parts of a specific field | kieranh | Shell Programming and Scripting | 9 | 09-28-2007 12:52 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Code:
awk -F"[<>]" '/fileName/{f=$3".xml"}{print > f}' file
Code:
awk -F"[<>]" # set fieldseparators
'/fileName/{f=$3".xml"} # if current line contains fileName, change filename (field 3 ".xml")
{print > f} # print file to filename
' file
Unix Tutorials/Programming Tutorials/Shell Scripting Tutorials |
|
||||
|
The job has been done, but the only thing left is that the xml that i sgetting generated is also having the filename tag
Can we generate the xmls starting from <<?xml version="1.0" encoding="utf-8"?>> rather than <fileName>Name1</fileName> tag This is required because the xml thus generated is getting corrupted because of that filename tag |
|
||||
|
Quote:
Code:
awk -F"[<>]" '/fileName/{f=$3".xml";sub(".*fileName>","")}{print > f}' file
|
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|