Help with Creating file based on conditions


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with Creating file based on conditions
# 15  
Old 02-13-2015
I have tried your code and the output is not correct. the output should be like this. Please help !
Code:
00123T10
00123T11
00123T12
00123T14
.......
00123T20
00123K00
...
00123K04
06754T10
....
06754T20
06754K00
...
06754K04
....
next record

# 16  
Old 02-13-2015
Which version of ksh? Did you set the -B option?
# 17  
Old 02-13-2015
I tried with -B option and getting -B: bad option(s).
KSH version
Version M-11/16/88i
# 18  
Old 02-18-2015
Have you tried something yourself?
Add a line that removes the WinDOS \r character.
Code:
awk -F"=" '
{ sub(/\r$/,"") }
NR==FNR {s[nn++]=$2; next}
{
  for (n=0; n<nn; n+=2) {
    letter=substr(s[n],1,1)
    startd=substr(s[n],2); endd=substr(s[n+1],2)
    lend=length(startd)
    for (d=startd; d<=endd; d++) printf "%s%s%0*d\n",$0,letter,lend,d
  }
}' propertyfile.txt File1.txt > output.txt

The output is now redirected to output.txt.
# 19  
Old 02-23-2015
Thank u so much for your help! I have used nawk and the code is working, but one minor issue. The last K record is not inrementing. Can u please assist?
ex: current Output

Code:
00123T10
00123T11
00123T12
00123T14
............
00123T20
00123K00
06754T10
....
06754T20
06754K00

Expected output:

Code:
00123T10
00123T11
00123T12
00123T14
............
00123T20
00123K00
00123K01
00123K02
00123K03
00123K04
06754T10
....
06754T20
06754K00
06754K01
06754K02
06754K03
06754K04

# 20  
Old 02-25-2015
Most awk versions treat "04" as a string rather than a number!
This seems to fix it:
Code:
     startd=substr(s[n],2); endd=substr(s[n+1],2)+0

By adding a zero, endd changes from 04 to 4, and the d<=endd becomes a comparison of numbers.

Last edited by MadeInGermany; 02-25-2015 at 06:39 PM..
This User Gave Thanks to MadeInGermany For This Post:
# 21  
Old 03-04-2015
Thank u so much ! Its working fine.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Search and replace value based on certain conditions in a fixed width file

Hi Forum. I tried searching for a solution using the internet search but I haven't been able to find any solution for what I'm trying to accomplish. I have a fixed width column file where I need to search for any occurrences of "D0" in col pos.#1-2, 10-11, 20-21 and replaced it with "XD". ... (2 Replies)
Discussion started by: pchang
2 Replies

2. Shell Programming and Scripting

awk to update file based on 5 conditions

I am trying to use awk to update the below tab-delimited file based on 5 different rules/conditions. The final output is also tab-delimited and each line in the file will meet one of the conditions. My attemp is below as well though I am not very confident in it. Thank you :). Condition 1: The... (10 Replies)
Discussion started by: cmccabe
10 Replies

3. Shell Programming and Scripting

awk to filter file based on seperate conditions

The below awk will filter a list of 30,000 lines in the tab-delimited file. What I am having trouble with is adding a condition to SVTYPE=CNV that will only print that line if CI= must be >.05 . The other condition to add is if SVTYPE=Fusion, then in order to print that line READ_COUNT must... (3 Replies)
Discussion started by: cmccabe
3 Replies

4. Shell Programming and Scripting

Create new file with increment column based on conditions

Hello, Using bash script, i need to process the following file: 887,86,,2013-11-06,1,10030,5,2,0,200,, 887,86,,2013-11-05,1,10030,5,2,0,199,, 887,138,,2013-11-06,1,10031,6,2,0,1610612736,, 887,164,,2013-11-06,1,10000,0,2,0,36000,, and to create a new file such as the below ... (2 Replies)
Discussion started by: JonhyDeep
2 Replies

5. Shell Programming and Scripting

Split File based on different conditions

I need to split the file Conditions: Ignore any record that either starts with 1 or 9 Split the file at position 404 , if position 404 is abc or def then write all the records in a file > File 1 , the remaining records should go in to a file > File 2 Further I want to split the... (7 Replies)
Discussion started by: protech
7 Replies

6. UNIX for Dummies Questions & Answers

Shell script to extract data from csv file based on certain conditions

Hi Guys, I am new to shell script.I need your help to write a shell script. I need to write a shell script to extract data from a .csv file where columns are ',' separated. The file has 5 columns having values say column 1,column 2.....column 5 as below along with their valuesm.... (1 Reply)
Discussion started by: Vivekit82
1 Replies

7. Shell Programming and Scripting

Extract file records based on some field conditions

Hello Friends, I have a file(InputFile.csv) with the following columns(the columns are pipe-delimited): ColA|ColB|ColC|ColD|ColE|ColF Now for this file, I have to get those records which fulfil the following condition: If "ColB" is NOT NULL and "ColD" has values one of the following... (9 Replies)
Discussion started by: mehimadri
9 Replies

8. UNIX for Dummies Questions & Answers

How to get remove duplicate of a file based on many conditions

Hii Friends.. I have a huge set of data stored in a file.Which is as shown below a.dat: RAO 1869 12 19 0 0 0.00 17.9000 82.3000 10.0 0 0.00 0 3.70 0.00 0.00 0 0.00 3.70 4 NULL LEE 1870 4 11 1 0 0.00 30.0000 99.0000 0.0 0 0.00 0 0.00 0.00 0.00 0 ... (3 Replies)
Discussion started by: reva
3 Replies

9. Shell Programming and Scripting

validating a file based on conditions

i have a file in unix in which the records are like this aaa 123 233 aaa 234 222 aaa 242 222 bbb 122 111 bbb 122 123 ccc 124 222 In the output i want only the below records aaa ccc The validation logic is 1st column and 2nd column need to be considered if both columns values are... (8 Replies)
Discussion started by: trichyselva
8 Replies

10. UNIX for Dummies Questions & Answers

creating conditions for making a new line?

Basically I want to change this: a:b c:d:e f:g h:i:j k:l into a:b c d:e f:g h i:j k:l so like if there is two :'s in one line making the first into a new line. If anyone knows how to do this I would be very appreciative! (9 Replies)
Discussion started by: Audra
9 Replies
Login or Register to Ask a Question