The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
how to access values of awk/nawk variables outside the awk/nawk block? saniya Shell Programming and Scripting 5 05-13-2008 04:37 AM
nawk use ctap UNIX for Advanced & Expert Users 2 01-17-2008 02:45 AM
nawk -v to awk kamel.seg Shell Programming and Scripting 2 12-18-2007 03:30 AM
help with Awk or nawk Gerry405 UNIX for Dummies Questions & Answers 2 11-28-2005 09:00 AM
nawk whatisthis Shell Programming and Scripting 3 09-29-2004 10:44 AM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-01-2006
whatisthis's Avatar
Registered User
 

Join Date: Aug 2004
Posts: 175
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Spurl this Post!
nawk if within if condition

Hi,
I tried to use two if statement within one if statement in nawk and it keeps giving me the error message:
What did I go wrong here?

Thanks a lot!


#input file: qa2g:qa2_3:qa2,00380,1,Cat
#$1=qa2g:qa2_3:qa2
some=index($1,":")

if some != 0 {

if (split($1,label,) != 0 {
iterationposition=index(label(2),_)
if iterationposition != 0 {
iteration=substr(label(2),interationposition,2)
}
}
}
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 11-01-2006
vgersh99's Avatar
Moderator
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 2,983
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Spurl this Post!
pls do use vB Codes when posting sample data/code - it's impossible to see what you're trying to do.

What is IT that you're trying to do?
Give a sample input file and a desired result, pls - I don't understand what this code is doing/supposed to do.
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 04:50 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101