How to split a fixed width text file into several ones based on a column value?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to split a fixed width text file into several ones based on a column value?
# 8  
Old 12-21-2010
@panyam is correct

My bad. I misunderstood what was desired for output. I read his request as simply to pull off the first 8 characters.
# 9  
Old 12-21-2010
MySQL

Cool! Smilie

awk worked. Smilie

Couple of questions more.

What do I do if I do not want to hardcode the input_file_name in my shell script and pass it as a parameter from the prompt instead (while running the shell script)?

And how do I name the split output files as POS_Volume_<file_date_here>.txt?
# 10  
Old 12-21-2010
Code:
 
awk '{ print > "POS_Volume_"$1".txt" }'  $input_file_name

This User Gave Thanks to anurag.singh For This Post:
# 11  
Old 12-28-2010
Java

Quote:
Originally Posted by anurag.singh
Code:
 
awk '{ print > "POS_Volume_"$1".txt" }'  $input_file_name

Unfortunately, this one is not working.

Just keeps running without returning the prompt.

The previous awk worked like a charm.

How do I fix this one?
# 12  
Old 12-28-2010
Change:
Code:
$input_file_name

to the name of your input file (without the $)
This User Gave Thanks to Scott For This Post:
# 13  
Old 12-28-2010
Quote:
Originally Posted by scottn
Change:
Code:
$input_file_name

to the name of your input file (without the $)
But what if I don't want to hardcode the input filename? I want to pass the input filename dynamically while running the script. Smilie
# 14  
Old 12-28-2010
If input_file_name is set correctly before running ,awk, script should run.
Please post the script you are trying to run, showing how filename variable is set along with the awk command and how script is ran.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 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

UNIX command -Filter rows in fixed width file based on column values

Hi All, I am trying to select the rows in a fixed width file based on values in the columns. I want to select only the rows if column position 3-4 has the value AB I am using cut command to get the column values. Is it possible to check if cut -c3-4 = AB is true then select only that... (2 Replies)
Discussion started by: ashok.k
2 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. 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

5. Shell Programming and Scripting

Fixed width file search based on position value

Hi, I am unable to find the right option to extract the data in the fixed width file. sample data abcd1234xgyhsyshijfkfk hujk9876 io xgla loki8787eljuwoejroiweo dkfj9098 dja Search based on position 8-9="xg" and print the entire row output ... (4 Replies)
Discussion started by: onesuri
4 Replies

6. UNIX for Dummies Questions & Answers

Remove duplicates based on a column in fixed width file

Hi, How to output the duplicate record to another file. We say the record is duplicate based on a column whose position is from 2 and its length is 11 characters. The file is a fixed width file. ex of Record: DTYU12333567opert tjhi kkklTRG9012 The data in bold is the key on which... (1 Reply)
Discussion started by: Qwerty123
1 Replies

7. Shell Programming and Scripting

Changing one column of delimited file column to fixed width column

Hi, Iam new to unix. I have one input file . Input file : ID1~Name1~Place1 ID2~Name2~Place2 ID3~Name3~Place3 I need output such that only first column should change to fixed width column of 15 characters of length. Output File: ID1<<12 spaces>>Name1~Place1 ID2<<12... (5 Replies)
Discussion started by: manneni prakash
5 Replies

8. 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

9. Shell Programming and Scripting

Comparing column of variable length anf fixed width file

Hi, I have two input files. File1: ID Name Place 1-234~name1~Newyork 1-34~name2~Boston 1-2345~name3~Hungary File1 is a variable length file where each column is seperated by delimitter "~". File2: ID Country 1-34<<11 SPACES>>USA<<7 spaces>> 1-234<<10 SPACES>>UK<<8... (5 Replies)
Discussion started by: manneni prakash
5 Replies
Login or Register to Ask a Question