Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Check for not null column in a pipe delimited file Post 302974888 by RudiC on Sunday 5th of June 2016 03:44:53 PM
Old 06-05-2016
How about making it a bit more flexible? Try
Code:
awk '
NR==1   {MX = split(CHK, T, ",")
        }
        {for (i=1; i<=MX; i++)
           if ($(T[i]) == "") print "column " T[i] " is null at line " NR
        }
' FS="|" CHK="3,5,6,7,8" file
column 3 is null at line 1
column 6 is null at line 3
column 7 is null at line 6


Last edited by RudiC; 06-05-2016 at 04:48 PM.. Reason: Overlooked the "pipe" delimiter request.
This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grep for NULL in a pipe delimited file

hi, How can I check for a field in a pipe-delimited file having a NULL value in Unix using a grep command or any other command. Please reply (5 Replies)
Discussion started by: sureshg_sampat
5 Replies

2. Shell Programming and Scripting

How to check Null values in a file column by column if columns are Not NULLs

Hi All, I have a table with 10 columns. Some columns(2nd,4th,5th,7th,8th and 10th) are Not Null columns. I'll get a tab-delimited file and want to check col by col and generate seperate error code for each col eg:102 if 2nd col value is NULL and 104 if 4th col value is NULL so on... I am a... (7 Replies)
Discussion started by: Mandab
7 Replies

3. UNIX for Dummies Questions & Answers

Need help with shell script for chekking a column in txt file - pipe delimited

Hi: I have a text file date(pipe delimited) which is loaded in to the DB using sql loader(&CTL files) after some initial validation by the shell script. Now i have a situation where the shell script needs to check a column in the text file and if it is NULL then it needs send this record/row... (12 Replies)
Discussion started by: ravi0435
12 Replies

4. Shell Programming and Scripting

count of null in pipe delimited txt file

Hi, I have a pipe delimited txt file which contains 17 fields per line/row. 16th field contains email id. I want to count the number of lines/rows that contains null in the 16th field. Plz find attached example data file. I'm looking for a command line/script which achieves this. ... (5 Replies)
Discussion started by: Sriranga
5 Replies

5. UNIX for Advanced & Expert Users

Check Whether File is Pipe Delimited

Can anybody help me how to check whether a file is Pipe delimited or not? (1 Reply)
Discussion started by: Allwin333
1 Replies

6. Homework & Coursework Questions

how to show particular column from pipe delimited file

hi, I have pipe delimited flat file as below 1|ab|4.5|9| 2|ac|3|12| 3|ac|4.5|8| i want to show (display) only 3rd field between pipes. please help (1 Reply)
Discussion started by: vai15517
1 Replies

7. Shell Programming and Scripting

Find for line with not null values at nth place in pipe delimited file

Hi, I am trying to find the lines in a pipe delimited file where 11th column has not null values. Any help is appreciated. Need help asap please. thanks in advance. (3 Replies)
Discussion started by: manikms
3 Replies

8. Shell Programming and Scripting

Replace pipe delimited column string to null

Hi All, I have a large dat file where each lines are pipe delimited values. I need to parse the file depending on the request. For example: sometimes I have told to remove all the values in the 7th column (this case remove values '3333' only from the first line and '3543' from the second line)... (4 Replies)
Discussion started by: express14
4 Replies

9. Shell Programming and Scripting

Replacing a column in a pipe delimited file

Hi, I have a pipe delimited file as below and I need to replace the 2nd column of each line with null values. 1|10/15/2011|fname1|lname1 2|10/15/2012|fname2|lname2 3|10/15/2013|fname3|lname3 Output file: 1||fname1|lname1 2||fname2|lname2 3||fname3|lname3 I tried this ... (2 Replies)
Discussion started by: member2014
2 Replies

10. Shell Programming and Scripting

Replace delimiter for a particular column in a pipe delimited file

I have an input file as below Emp1|FirstName|MiddleName|LastName|Address|Pincode|PhoneNumber 1234|FirstName1|MiddleName2|LastName3| Add1 || ADD2|123|000000000 Output : 1234|FirstName1|MiddleName2|LastName3| Add1 ,, ADD2|123|000000000 OR 1234,FirstName1,MiddleName2,LastName3, Add1 ||... (2 Replies)
Discussion started by: styris
2 Replies
srec_aomf(5)							File Formats Manual						      srec_aomf(5)

NAME
srec_aomf - Intel Absolute Object Module Format DESCRIPTION
The Absolute Object Module Format (AOMF) is a subset of the 8051 OMF. The structure of an absolute object file (the order of the records in it) is similar to that of a relocatable object file. There are three main differences: the first is that an absolute object file con- tains one module only, the second is that not all the records can appear in the absolute file and the third is that the records can contain only absolute information. Generic Record Format Each record starts with a record type which indicates the type of the record, and record length which contain the number of bytes in the record exclusive of the first two fields. The record ends with a checksum byte which contains the 2s complement of the sum (modulo 256) of all other bytes in the record. Therefore the sum (modulo 256) of all bytes in the record is zero. The record length includes the payload and checksum fields, but excludes the type and length fields. All 16-bit fields are little-endian. +--------+---------+---------+---------+ |REC | Record | Payload | CHK | |TYP | Length | | SUM | |8 bits | 16 bits | | 8 bits | +--------+---------+---------+---------+ Here are some of the relevant record types: 0x01 Scope Definition Record 0x02 Module Start Record 0x04 Module End Record 0x06 Content Record 0x0E Segment Definition Record 0x12 Debug Items Record 0x16 Public Definition Record 0x18 External Definition Record Names are not stored a C strings. Names are stored as a length byte followed by the contents. Structure An AOMF file consists of a module header record (0x02), followed by one or more content (0x06), scope (0x01) or debug (0x12) records, and ends in a module end record (0x04). The records with the following types are extraneous (they may appear in the file but are ignored): 0x0E, 0x16 and 0x18 (definition records). All records which are not part of the AOMF and are not extraneous are considered erroneous. Module Header Record +--------+---------+---------+---------+---------+---------+ | REC | Record | Module | TRN ID | zero | CHK | | TYP | Length | Name | 8 bits | 8 bits | SUM | | 0x02 | 16 bits | | | | 8 bits | +--------+---------+---------+---------+---------+---------+ Each module must starts with a module header record. It is used to identify the module for the RL51 and other future processors of 8051 object files. In addition to the Module Name the record contains: TRN ID The byte identifies the program which has generated this module: 0xFD ASM51 0xFE PL/M-51 0xFF RL51. Module End Record +--------+---------+---------+---------+---------+---------+---------+ | REC | Record | Module | zero | REG | zero | CHK | | TYP | Length | Name | 16 bits | MSK | 8 bits | SUM | | 0x04 | 16 bits | | | 8 bits | | 8 bits | +--------+---------+---------+---------+---------+---------+---------+ The record ends the module sequence and contains the following information: characteristics MODULE NAME The name of the module is given here for a consistency check. It must match the name given in the Module Header Record. REGISTER MASK (REG MSK) The field contains a bit for each of the four register banks. Each bit, when set specifies that the corresponding bank is used by the module: Bit 0 (the least significant bit) bank #0. Bit 1 bank #1. Bit 2 bank #2. Bit 3 bank #3. Content Record +--------+---------+---------+---------+---------+---------+ | REC | Record | SEG ID | Offset | DATA | CHK | | TYP | Length | 8 bits | 16 bits | | SUM | | 0x06 | 16 bits | | | | 8 bits | +--------+---------+---------+---------+---------+---------+ This record provides one or more bytes of contiguous data, from which a portion of a memory image may be constructed. SEG ID This field must be zero. OFFSET Gives the absolute address of the first byte of data in the record, within the CODE address space. DATA A sequence of data bytes to be loaded from OFFSET to OFFSET+RECORDLENGTH-5. Size Multiplier In general, raw binary data will expand in sized by approximately 1.02 times when represented with this format. SOURCE
http://www.intel.com/design/mcs96/swsup/omf96_pi.pdf ftp://download.intel.com/design/mcs51/SWSUP/omf51.exe (zip archive) http://www.elsist.net/WebSite/ftp/various/OMF51EPS.pdf COPYRIGHT
srec_cat version 1.58 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Peter Miller The srec_cat program comes with ABSOLUTELY NO WARRANTY; for details use the 'srec_cat -VERSion License' command. This is free software and you are welcome to redistribute it under certain conditions; for details use the 'srec_cat -VERSion License' command. AUTHOR
Peter Miller E-Mail: pmiller@opensource.org.au //* WWW: http://miller.emu.id.au/pmiller/ Reference Manual SRecord srec_aomf(5)
All times are GMT -4. The time now is 08:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy