The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Read output of mii-tool picoaeterna Shell Programming and Scripting 1 02-17-2008 07:27 PM
output string message to pipe princelinux High Level Programming 3 08-18-2006 02:09 AM
Piping output to while read Ultimodiablo Shell Programming and Scripting 3 11-26-2005 10:38 PM
store output to a file and read from it afadaghi Shell Programming and Scripting 2 10-04-2005 12:00 PM
Output the message ust UNIX for Dummies Questions & Answers 1 09-25-2005 08:35 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 01-24-2007
happyv happyv is offline
Registered User
  
 

Join Date: Sep 2006
Posts: 209
read file and output message

hi,

I have a baby.txt file with two type of message:

xxxxxxxx is missing
xxxxxxxxxxx is not missing
xxxx is missing
xxxxxxxx is not missing
xxxxxxxx is not missing

For the above, I need to read file and get all "xxxx is missing" and write into baby_missing.txt. If no message "xxxxx is missing" in whole baby.txt, the script will write message "no file is missing in system" to baby_nomissing.txt

is it possible? if yes..how?
  #2 (permalink)  
Old 01-24-2007
anbu23 anbu23 is offline Forum Advisor  
Registered User
  
 

Join Date: Mar 2006
Location: Bangalore,India
Posts: 1,398
Code:
awk ' /is missing/ { flag=1;print > "baby_missing.txt" }
END { 
if( flag != 1 ) 
    print "no file is missing in system" > "baby_nomissing.txt" 
} ' baby.txt
  #3 (permalink)  
Old 01-24-2007
happyv happyv is offline
Registered User
  
 

Join Date: Sep 2006
Posts: 209
Quote:
Originally Posted by anbu23
Code:
awk ' /is missing/ { flag=1;print > "baby_missing.txt" }
END { 
if( flag != 1 ) 
    print "no file is missing in system" > "baby_nomissing.txt" 
} ' baby.txt
the script display the following error:
ksh: syntax error: `}' unexpected
  #4 (permalink)  
Old 01-24-2007
anbu23 anbu23 is offline Forum Advisor  
Registered User
  
 

Join Date: Mar 2006
Location: Bangalore,India
Posts: 1,398
Its working for me.Check whether you have missed brace in your script
  #5 (permalink)  
Old 01-24-2007
happyv happyv is offline
Registered User
  
 

Join Date: Sep 2006
Posts: 209
Quote:
Originally Posted by anbu23
Its working for me.Check whether you have missed brace in your script
May be I added mailx into.. can you help?

awk ' /is missing/ { flag=1;print > "baby_missing.txt" }
mailx -c "`cat ccfile.txt`" -s \'"Missing tap file status $today'" "`cat tofile.txt`" < missing.msg
END {
if( flag != 1 )
print "no file is missing in system" > "baby_nomissing.txt"
} ' baby.txt
  #6 (permalink)  
Old 01-24-2007
anbu23 anbu23 is offline Forum Advisor  
Registered User
  
 

Join Date: Mar 2006
Location: Bangalore,India
Posts: 1,398
You have to use system() function to execute unix commands within awk.
  #7 (permalink)  
Old 01-24-2007
happyv happyv is offline
Registered User
  
 

Join Date: Sep 2006
Posts: 209
Quote:
Originally Posted by anbu23
You have to use system() function to execute unix commands within awk.
what do you mean? I changed {} to () ....but still not work.
Sponsored Links
Closed Thread

Bookmarks

Tags
unix commands

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 01:53 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0