find | gawk --- NOT WORKING


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting find | gawk --- NOT WORKING
# 8  
Old 09-08-2008
the problem is that the output of find is beeing interpreted by awk as the text to filter, not the files to open with the text inside.
you have to do something like this

Code:
find . -name '*.txt' | while read line
do
         Gawk -F '\t' '$8 == "HP" || $8 == "IBM" || $8 == "Dell" {print $1, $4, $8 }' $line
done

# 9  
Old 09-08-2008
i try to run this code but didnt work

file name new.sh

#! /usr/bin/bash
find .-name '*.txt' | while read line
do
gawk -F '\t' '$2== "MS2" {print $1, $2}'$line
done < output_file.txt



i am getting this error
$ ./new.sh
./new.sh: line 5: syntax error near unexpected token `done'Smilie
./new.sh: line 5: `done 'Smilie
# 10  
Old 09-08-2008
Quote:
Originally Posted by Needhelp2
i try to run this code but didnt work

file name new.sh

#! /usr/bin/bash
find .-name '*.txt' | while read line
do
gawk -F '\t' '$2== "MS2" {print $1, $2}'$line
done < output_file.txt



i am getting this error
$ ./new.sh
./new.sh: line 5: syntax error near unexpected token `done'Smilie
./new.sh: line 5: `done 'Smilie
im not an expert, but i think if you want the text to go out, you need > instad of < (which makes teh text go in)
# 11  
Old 09-08-2008
Also you need a space before $line
# 12  
Old 09-08-2008
hi guys,


still gettting the same error msg.
# 13  
Old 09-08-2008
Quote:
Originally Posted by Needhelp2
hi guys,


still gettting the same error msg.
post the current script (pls pls pls use [code] tags)
and post the error
# 14  
Old 09-08-2008
hi broli

i am new to this page and also new to shell scripting in fact this is my first script

can u pls tell me what is a code tags?

this the code that i am running

#!/usr/bin/sh
find .-name '*.FMT' | while read line
do
gawk -F '\t' '$2== "MS2" {print $1, $2}' $line
done

and this is the error msg.

$ ./new.sh
./new.sh: line 5: syntax error near unexpected token `done'
./new.sh: line 5: `done'

thanks for your help.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Gawk program not working in a script

I've written a very simple gawk program which runs when I execute it at the POSIX shell but the corresponding '.awk' script I wrote doesn't return any data. I'm on an HP-UX running gawk version 3.1. (w/all the defaults) (As you can probably guess I'm a newbie going through the manual and trying... (2 Replies)
Discussion started by: RUCerius
2 Replies

2. Shell Programming and Scripting

Find && Gawk

I have several of the same file names(facts) in different directories that are "|" pipe delimited and are like such: xxx.xxx.xxx.xx1|blah|a|host|FQDN|domain||extra stuff blah1 blah2 host xxx.xxx.xxx.xx2|blah|a|host|FQDN|domain||extra stuff blah1 blah2 host... (2 Replies)
Discussion started by: metallica1973
2 Replies

3. Shell Programming and Scripting

Find not working right

if ] then leftarray=($(find . -type l -printf "%p\n" 2>/dev/null)) rightarray=($(find . -type l -printf "%l\n" 2>/dev/null)) for var in "${rightarray}" do maximumarray=`echo "$var" | tr -dc "/" | wc -c | tr -d " "` index=$(($index+1)) done ############# for numbers in... (3 Replies)
Discussion started by: xpukm
3 Replies

4. Shell Programming and Scripting

Gawk Find Pattern Print Lines Before and After

Using grep I can easily use: cvs log |grep -iB 10 -A 10 'date: 2013-10-30' to display search results and 10 lines before and after. How can this be accompished using gawk? (4 Replies)
Discussion started by: metallica1973
4 Replies

5. Shell Programming and Scripting

Working with FIND command

Hi , In /home/etc/files path ran the following command find . -name 'ABC*' | wc -l The output of the above command is 25 as expected In path /home path ran the following command find . -name '/home/etc/files/ABC*' | wc -l The output of the abvoe command is 0 . Why the above... (3 Replies)
Discussion started by: smile689
3 Replies

6. UNIX for Dummies Questions & Answers

Find with Prune not working

Hi I am trying to list all files in every subdirectory from a given location. However, I realise that 1 folder will have files that I am not interested in. This is using a .csh file to execute I have tried different scripts but to no avail. My current incarnation is below. Would someone be... (4 Replies)
Discussion started by: wonderbison
4 Replies

7. Shell Programming and Scripting

find command not working

Hi all, find command not working for me in a perticular directory.The same command is working fine in any other directory. Following is the command i issued: find . -type f -print my question is , is it possbile to disable a command only for a perticular directory ??...of course... (4 Replies)
Discussion started by: panyam
4 Replies

8. Shell Programming and Scripting

how to find in which shell i am working..

Hi Friends, I am new for this site.i have a small query.plz let me know the command to find in which shell presently i am working. (2 Replies)
Discussion started by: pineapple
2 Replies

9. Shell Programming and Scripting

How to find date Difference in AWK/GAWK with millisecond precision

Hi, I have a log file that has the date in this format "2006-05-30_13:14:04,256". I need to find the time difference between two log entries in milliseconds. How to achieve this in AWK/GAWK script? :confused: (2 Replies)
Discussion started by: omprasad
2 Replies

10. Shell Programming and Scripting

find/if statement not working

Hi guys: I am trying to delete multiple files in a folder with different names. Below is the script that I was trying, but it doesn't work ************************** #!/bin/ksh DATE=`date '+20%y%m%d'` DEL_DIR=<dir where files have to be deleted> let DATE2=$(($DATE - 2)) let DATE1=$(($DATE... (12 Replies)
Discussion started by: geomonap
12 Replies
Login or Register to Ask a Question