Replace using awk on fixed width file.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Replace using awk on fixed width file.
# 1  
Old 05-27-2015
Replace using awk on fixed width file.

All,

I used to use following command to replace specific location in a fixed width file.

Recently looks like my command stopped working as intended. We are on AIX unix.

Code:
awk 'function repl(s,f,t,v)
{ return substr(s,1,f-1) sprintf("%-*s", t-f+1, v) substr(s,t+1) }
NR<=10 { a=repl($0,474,1,"Y")
  a=repl(a,476,1,"N")
  a=repl(a,478,10,"2011-01-01")
  a=repl(a,489,10,"2011-12-31")
  print a
} 
NR>10 && NR<=20 { a=repl($0,474,1,"N")
  a=repl(a,476,1,"Y")
  a=repl(a,478,10,"2015-01-01")
  a=repl(a,489,10,"2015-12-31")
  print a
}
NR>20 ' filename  > filename.new



Currently the command is replacing incorrectly and the output seems to be wierd layout than the original file.

Appreciate your help on fixing this.
# 2  
Old 05-27-2015
Could you also post an anonymized sample of your input and the intended output...
# 3  
Old 05-27-2015
May I question that your script has ever worked, no matter what the system was? t-f+1 with f=478 and t=1 will yield a negative number not suitable as a width parameter for sprintf. Even if you remove the - sign from the format string, the result is inacceptable, adding about 2000 spaces to each of your lines.
Try
Code:
return substr(s,1,f-1) sprintf("%-*s", t, v) substr(s,f+t) }

and report back on the results.
# 4  
Old 05-27-2015
It looks like your repl function was written to expect FROM and TO values so you should be calling it like this:

Code:
a=repl(a,478,487,"2011-01-01")


Or update repl() to use FROM and LENGTH as RudiC mentioned:

Code:
function repl(s,f,L,v)
{ return substr(s,1,f-1) sprintf("%-*s", L, v) substr(s,f+L) }


Code:
$ printf "%c" {1..9} {0..9} | awk '
function repl(s,f,L,v) { return substr(s,1,f-1) sprintf("%-*s", L, v) substr(s,f+L) }
{print repl($0,8,3,"AB") }'
1234567AB 123456789


Last edited by Chubler_XL; 05-27-2015 at 06:51 PM..
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 issue splitting a fixed-width file containing line feed in data

Hi Forum. I have the following script that splits a large fixed-width file into smaller multiple fixed-width files based on input segment type. The main command in the script is: awk -v search_col_pos=$search_col_pos -v search_str_len=$search_str_len -v segment_type="$segment_type"... (8 Replies)
Discussion started by: pchang
8 Replies

3. Shell Programming and Scripting

Print column details from fixed width file using awk command

hi, i have a fixed width file with multiple columns and need to print data using awk command. i use: awk -F "|" '($5 == BH) {print $1,$2,$3}' <non_AIM target>.txt for a delimiter file. but now i have a fixed width file like below: 7518 8269511BH 20141224951050N8262 11148 8269511BH... (5 Replies)
Discussion started by: kcdg859
5 Replies

4. UNIX for Dummies Questions & Answers

Replace the unexpected newline char with space in a Fixed width file

Input eg: Ouput Expected. The #rd line had the unexpted new line, which need to be replaced with space. I was planing to go with checking the length of each line using awk and if the length is less than the defeined limit, (12 in above case) will replace the newline with space. ... (5 Replies)
Discussion started by: deepakwins
5 Replies

5. Shell Programming and Scripting

To replace the value of the column in a fixed width file

I have a fixed with file with header & trailer length having the same length of the detail record file. The details record length of this file is 24, for Header and Trailer the records will be padded with spaces to match the record length of the file Currently I am adding 3 spaces in header... (14 Replies)
Discussion started by: ginrkf
14 Replies

6. Shell Programming and Scripting

awk: creating a fixed-width single file from 2 different files

I have to create a single file from three files, Please see below for samples: day.txt 20090101 20090102 item.txt 123456789101 12345678910209 1234567891 str.txt 1 12 123 output.txt 20090101123456789101 1 0 2009010112345678910209 12 ... (2 Replies)
Discussion started by: tamahomekarasu
2 Replies

7. Shell Programming and Scripting

Appending string (charachters inside the line) to a fixed width file using awk or sed

Source File: abcdefghijklmnop01qrstuvwxyz abcdefghijklmnop02qrstuvwxyz abcdefghijklmnop03qrstuvwxyz abcdefghijklmnop04qrstuvwxyz abcdefghijklmnop05qrstuvwxyz Whatever characters are in 17-18 on each line of the file, it should be concatenated to the same line at the character number... (6 Replies)
Discussion started by: tamahomekarasu
6 Replies

8. Shell Programming and Scripting

Fixed Width Join & Pad Sed/Awk Help

I was wondering someone might be able to push me in the right direction, I am writing a script to modify fixed-width spool files, As you can see below the original spool file broke a single line into two for printability sake. I have had been able do the joins using sed, the thing I am... (10 Replies)
Discussion started by: Cho Nagurai
10 Replies

9. Shell Programming and Scripting

edit entire column from a fixed-width file using awk or sed

Col1 Col2 Col3 Col4 12 Completed 08 0830 12 In Progress 09 0829 11 For F U 07 0828 Considering the file above, how could i replace the third column the most efficient way? The actual file size is almost 1G. I am... (10 Replies)
Discussion started by: tamahomekarasu
10 Replies

10. UNIX for Dummies Questions & Answers

Fixed Width file using AWK

I am using the following command at the Unix prompt to make my 'infile' into a fixed width file of 100 characters. awk '{printf "%-100s\n",$0}' infile > outfile However, there are some records with a special character "©" These records are using 3 characters in place of one and my record... (2 Replies)
Discussion started by: alok.benjwal
2 Replies
Login or Register to Ask a Question