Sponsored Content
Full Discussion: awk or nawk in ksh
Top Forums Shell Programming and Scripting awk or nawk in ksh Post 302533475 by neutronscott on Thursday 23rd of June 2011 06:02:28 PM
Old 06-23-2011
i tested with linux/bash. sorry don't have access to Solaris machine from home..

Code:
#!/bin/sh
filelist=$(find ./inform -name *.txt -print | tr '\n' ' ')
echo "Files $filelist"

nawk -F':' '
$2 ~ /Reason/ && $3 !~ /(PASSTHRU|OCP|Power Button Reset|Bootloader)/ {
        split(FILENAME, a, "-")
        f = a[1]
        while (i = index(f, "/")) f = substr(f, i+1)
        printf("%s %s,%s,%s,%s,%s,%s\n", a[4], a[5], a[2], a[3], f, $0, f)
}' $filelist


Last edited by neutronscott; 06-23-2011 at 07:10 PM.. Reason: forgot $2 ~ /Reason/
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

help with Awk or nawk

Can anyone explain to me why the first line doesn't work and the second seems to work fine. I am trying to find all occurances of text within a certain column (col 13) that start with the character V, I suppose it sounds simple but I have tried using the following but don't really understand what... (2 Replies)
Discussion started by: Gerry405
2 Replies

2. Shell Programming and Scripting

nawk -v to awk

hi, i have the command nawk -v i want to use it equivalent in awk? any help please :) (2 Replies)
Discussion started by: kamel.seg
2 Replies

3. Shell Programming and Scripting

nawk/ksh help

Hello, First of all, I am trying to duplicate the sum command using ksh/nawk Lets assume the following algorithms work just fine and there is no calculation errors what so ever (which I doubt at this minute). For now, I wanna make sure the script uses the BSD algorithim if -r is used... (0 Replies)
Discussion started by: DeltaX
0 Replies

4. UNIX for Dummies Questions & Answers

How to use awk instead of nawk?

Hi all, I can run the following script using nawk..However, I find that teh server dun support nawk.. May I know how to change teh script to use awk such that it will work? Very urgent.. thx! nawk 'BEGIN {FS=OFS=","} NR==FNR{arr=$2;next} $0 !~ "Documentation"{print $0;next} ... (2 Replies)
Discussion started by: kinmak
2 Replies

5. Shell Programming and Scripting

how to access values of awk/nawk variables outside the awk/nawk block?

i'm new to shell scripting and have a problem please help me in the script i have a nawk block which has a variable count nawk{ . . . count=count+1 print count } now i want to access the value of the count variable outside the awk block,like.. s=`expr count / m` (m is... (5 Replies)
Discussion started by: saniya
5 Replies

6. UNIX for Dummies Questions & Answers

Arrays in nawk and ksh

I'm not confident at all on how arrays work. I want to know how to set arrays in ksh and in nawk (is there a difference??) if someone can show me some examples of both that will be great. Tried to look up on the net but was confusing me more. Any help would be appreciated. (2 Replies)
Discussion started by: Pablo_beezo
2 Replies

7. UNIX for Dummies Questions & Answers

Help me to know about awk and nawk

Hi everyone, i am new to unix , so i want to know what is the use of awk and nawk. because in most of the place this cmds were used. so, if anyone provied the basic idea of this cmds, it will be much helpfull for me . . .. Thnks in Advance :) (9 Replies)
Discussion started by: natraj005
9 Replies

8. Shell Programming and Scripting

ksh/nawk help with if statement to choose between 2 files

Hi! I am having a bit of a problem with my script. There are two different date formats that may appear in a file, either Jul-12 or Jul--6. I tried to create an if statement that searches for one of the formats and if that doesn't exist searches for the other, however it doesn't seem to be... (3 Replies)
Discussion started by: ther2000
3 Replies

9. Shell Programming and Scripting

Awk,nawk Help please

Hi Guys, I am in need of some help; I have an xml message file which contains personal details as shown below: , message=, message=, message=, message=, message=, message= I want to use nawk to parse these xml messages but I am new to awk and nawk. What I want is to get output... (7 Replies)
Discussion started by: James_Owen
7 Replies
DCENTVFY(1)						DICOM PS3 - Validate DICOM entities					       DCENTVFY(1)

NAME
dcentvfy - ACR/NEMA DICOM PS3 ... DICOM PS3 - Validate DICOM entities SYNOPSIS
dcentvfy " inputfile1 [ inputfile2 ... ]" [ -v|verbose|vv|veryverbose ] [ -f|-filelist filename ] DESCRIPTION
dcentvfy reads the named dicom files (and/or the files listed in the specified file), extracts patient, study, series and instance entity unique identifiers and then validates that the attribute values defined in the standard for those entities have consistent values for the same entity. OPTIONS
The description and verbose output go to standard error. The basic input switches are described in dcintro(1). Options specific to this program are: -v|verbose Describe as files are read and analyzed and the model of entity relationships to instances is built. -vv|veryverbose Describe the detailed behavior of comparison of each attribute for each entity for each instance. -f|filelist filename A file containing a list of DICOM input files (one filename per line). ENVIRONMENT
EXAMPLES
FILES
SEE ALSO
dciodvfy(1), dcintro(1) AUTHOR
Copyright (C) 1993-2010. David A. Clunie DBA PixelMed Publishing. All rights reserved. BUGS
DICOM PS3 28 September 2008 DCENTVFY(1)
All times are GMT -4. The time now is 05:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy