Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Replace one column from fixed width file with another column from another file Post 303044994 by pchang on Tuesday 10th of March 2020 09:43:48 AM
Old 03-10-2020
Thank you to Nezabudka and Rudi C for your inputs.

After doing some additional testing, here's the final code after some tweaking:

Code:
awk '
NR==FNR    {pat[$1] = $2
            next
           }
           {$0 = substr ($0, 1, 133) sprintf ("%-12s", pat[substr ($0, 134, 12)]) substr($0, 146)
           }
1 ' FS='|' File2.txt  File1.txt

 

9 More Discussions You Might Find Interesting

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

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

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

4. Shell Programming and Scripting

row to column and position data in to fixed column width

Dear friends, Below is my program and current output. I wish to have 3 or 4 column output in order to accomodate in single page. i do have subsequent command to process after user enter the number. Program COUNT=1 for MYDIR in `ls /` do VOBS=${MYDIR} echo "${COUNT}. ${MYDIR}" ... (4 Replies)
Discussion started by: baluchen
4 Replies

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

6. Shell Programming and Scripting

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

Hi, I have a fixed width text file without any header row. One of the columns contains a date in YYYYMMDD format. If the original file contains 3 dates, I want my shell script to split the file into 3 small files with data for each date. I am a newbie and need help doing this. (14 Replies)
Discussion started by: bhanja_trinanja
14 Replies

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

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

9. 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
DBIx::Class::InflateColumn(3)				User Contributed Perl Documentation			     DBIx::Class::InflateColumn(3)

NAME
DBIx::Class::InflateColumn - Automatically create references from column data SYNOPSIS
# In your table classes __PACKAGE__->inflate_column('column_name', { inflate => sub { ... }, deflate => sub { ... }, }); DESCRIPTION
This component translates column data into references, i.e. "inflating" the column data. It also "deflates" references into an appropriate format for the database. It can be used, for example, to automatically convert to and from DateTime objects for your date and time fields. There's a convenience component to actually do that though, try DBIx::Class::InflateColumn::DateTime. It will handle all types of references except scalar references. It will not handle scalar values, these are ignored and thus passed through to SQL::Abstract. This is to allow setting raw values to "just work". Scalar references are passed through to the database to deal with, to allow such settings as " 'year + 1'" and " 'DEFAULT' " to work. If you want to filter plain scalar values and replace them with something else, see DBIx::Class::FilterColumn. METHODS
inflate_column Instruct DBIx::Class to inflate the given column. In addition to the column name, you must provide "inflate" and "deflate" methods. The "inflate" method is called when you access the field, while the "deflate" method is called when the field needs to used by the database. For example, if you have a table "events" with a timestamp field named "insert_time", you could inflate the column in the corresponding table class using something like: __PACKAGE__->inflate_column('insert_time', { inflate => sub { DateTime::Format::Pg->parse_datetime(shift); }, deflate => sub { DateTime::Format::Pg->format_datetime(shift); }, }); (Replace DateTime::Format::Pg with the appropriate module for your database, or consider DateTime::Format::DBI.) The coderefs you set for inflate and deflate are called with two parameters, the first is the value of the column to be inflated/deflated, the second is the row object itself. Thus you can call "->result_source->schema->storage->dbh" in your inflate/defalte subs, to feed to DateTime::Format::DBI. In this example, calls to an event's "insert_time" accessor return a DateTime object. This DateTime object is later "deflated" when used in the database layer. get_inflated_column my $val = $obj->get_inflated_column($col); Fetch a column value in its inflated state. This is directly analogous to "get_column" in DBIx::Class::Row in that it only fetches a column already retrieved from the database, and then inflates it. Throws an exception if the column requested is not an inflated column. set_inflated_column my $copy = $obj->set_inflated_column($col => $val); Sets a column value from an inflated value. This is directly analogous to "set_column" in DBIx::Class::Row. store_inflated_column my $copy = $obj->store_inflated_column($col => $val); Sets a column value from an inflated value without marking the column as dirty. This is directly analogous to "store_column" in DBIx::Class::Row. SEE ALSO
DBIx::Class::Core - This component is loaded as part of the "core" DBIx::Class components; generally there is no need to load it directly AUTHOR
Matt S. Trout <mst@shadowcatsystems.co.uk> CONTRIBUTORS
Daniel Westermann-Clark <danieltwc@cpan.org> (documentation) Jess Robinson <cpan@desert-island.demon.co.uk> LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.16.2 2012-10-18 DBIx::Class::InflateColumn(3)
All times are GMT -4. The time now is 11:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy