Text Splitter


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Text Splitter
# 8  
Old 08-17-2012
Quote:
Originally Posted by pamu
we need to give $(NF-1)

Code:
awk -F\" '/BEGIN DSJOB/{s=$0;getline;f=$(NF-1)".txt";print s > f}{print > f} /END DSJOB/{close(f)}' test_temp

Right, thanks!
# 9  
Old 08-17-2012
Strange enough. I do confirm the citations from the awk man page. But, executing Franklin52's contruct (with pamu's addition), LA.txt will contain 2 empty lines, while NA.txt is correctly written to. Using two >, both files are OK.
awk version: mawk 1.3.3
# 10  
Old 08-17-2012
Thanks all...
# 11  
Old 08-17-2012
Quote:
Originally Posted by RudiC
Strange enough. I do confirm the citations from the awk man page. But, executing Franklin52's contruct (with pamu's addition), LA.txt will contain 2 empty lines, while NA.txt is correctly written to. Using two >, both files are OK.
awk version: mawk 1.3.3
Strange Smilie, never have any problem with it.
# 12  
Old 08-17-2012
Quote:
Originally Posted by RudiC
Strange enough. I do confirm the citations from the awk man page. But, executing Franklin52's contruct (with pamu's addition), LA.txt will contain 2 empty lines, while NA.txt is correctly written to. Using two >, both files are OK.
awk version: mawk 1.3.3
Hi Rudic,

After using two >, both files are getting created but it also has some unwanted data. such as ......
Solution provided by raj_saini20 in post 2 works perfectly here...

Code:
$ awk -F\" '/BEGIN DSJOB/{s=$0;getline;f=$(NF-1)".txt";print s > f}{print >> f} /END DSJOB/{close(f)}' test_temp
$ cat LA.txt
BEGIN DSJOB
   Identifier "LA"
   DateModified "2011-10-28"
   TimeModified "11.10.02"
   BEGIN DSRECORD
      Identifier "ROOT"
      BEGIN DSSUBRECORD
         Owner "APT"
         Name "RecordJobPerformanceData"
         Value "0"
      END DSSUBRECORD
   END DSRECORD
END DSJOB
........
........
$ cat NA.txt
BEGIN DSJOB
   Identifier "NA"
   DateModified "2011-10-28"
   TimeModified "11.10.02"
   BEGIN DSRECORD
      Identifier "ROOT"
      BEGIN DSSUBRECORD
         Owner "APT"
         Name "RecordJobPerformanceData"
         Value "0"
      END DSSUBRECORD
   END DSRECORD
END DSJOB
........
........
........
..........


Last edited by pamu; 08-18-2012 at 05:15 AM..
# 13  
Old 08-19-2012
Guess am late for the show...but just as food for the thought...

Code:
awk 'BEGIN{RS="END DSJOB";} {x=substr($4,2,2)".txt";print $0 >> x}' file_name

# 14  
Old 08-20-2012
Quote:
Originally Posted by msabhi
Guess am late for the show...but just as food for the thought...

Code:
awk 'BEGIN{RS="END DSJOB";} {x=substr($4,2,2)".txt";print $0 >> x}' file_name

Only one file gets created with this and missing last line "END DSJOB".....
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Match text to lines in a file, iterate backwards until text or text substring matches, print to file

hi all, trying this using shell/bash with sed/awk/grep I have two files, one containing one column, the other containing multiple columns (comma delimited). file1.txt abc12345 def12345 ghi54321 ... file2.txt abc1,text1,texta abc,text2,textb def123,text3,textc gh,text4,textd... (6 Replies)
Discussion started by: shogun1970
6 Replies

2. Shell Programming and Scripting

awk to skip lines find text and add text based on number

I am trying to use awk skip each line with a ## or # and check each line after for STB= and if that value in greater than or = to 0.8, then at the end of line the text "STRAND BIAS" is written in else "GOOD". So in the file of 4 entries attached. awk tried: awk NR > "##"' "#" -F"STB="... (6 Replies)
Discussion started by: cmccabe
6 Replies

3. Shell Programming and Scripting

awk or perl script for preposition splitter

Hello, I am writing a Natural Language Parser and one of the tools I need is to separate prepositional phrase markers which begin with a Preposition. I have a long list of such markers (sample given below)and am looking for a script in awk or perl which will allow me to access a look-up file... (2 Replies)
Discussion started by: gimley
2 Replies

4. Shell Programming and Scripting

File splitter

I have below script which does splitting based on a different criteria. can it be amended to produce required result SrcFileName=XML_DUMP awk '/<\?xml version="1\.0" encoding="utf-8"\?>/{n++} n{f="'"${SrcFileName}_"'" sprintf("%04d",n) ".txt" print >> f close(f)}' $SrcFileName.txt My... (3 Replies)
Discussion started by: santosh2k2
3 Replies

5. Shell Programming and Scripting

Source xml file splitter

I have a source file that contains multiple XML files concatenated in it. The separator string between files is <?xml version="1.0" encoding="utf-8"?>. I wanted to split files in multiple files with mentioned names. I had used a awk code earlier to spilt files in number of lines i.e. awk... (10 Replies)
Discussion started by: santosh2k2
10 Replies

6. Shell Programming and Scripting

File Splitter output filename

Issue: I am able to split source file in multiple files of 10 rows each but unable to get the required outputfile name. please advise. Details: input = A.txt having 44 rows required output = A_001.txt , A_002.txt and so on. Can below awk be modified to give required result current... (19 Replies)
Discussion started by: santosh2k2
19 Replies

7. Shell Programming and Scripting

Syllable splitter in Perl

Hello, I am a relative newbie and want to split Names in English into syllables. Does anyone know of a perl script which does that. Since my main area is linguistics, I would be happy to add rules to it and post the perl script back for other users. I tried the CPan perl modules but they don't... (6 Replies)
Discussion started by: gimley
6 Replies

8. Programming

Help with splitter code in JAVA

I was creating a file using splitter and printwriter. The result in the file come out as: TO:bbb,ccc,eee Instead of, TO:bbb TO:ccc TO:eee May I know what's wrong with this? (1 Reply)
Discussion started by: eel
1 Replies

9. Shell Programming and Scripting

File splitter by nth row

I need to split a file into n separate files of about the same size. The way the file will be split is at every nth row, starting with the first row, that row will be cut and copied to it's corresponding new file so that each file has unique records. Any 'leftovers' will go into the last file. e.g.... (4 Replies)
Discussion started by: sitney
4 Replies
Login or Register to Ask a Question