![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| 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 |
| How to rewrite a line in a file | c0384 | Shell Programming and Scripting | 21 | 05-22-2007 02:06 AM |
| How do I rewrite to use a while instead of find? | goodmis | Shell Programming and Scripting | 4 | 02-06-2007 02:20 PM |
| Make grep -c display like grep -n? | Jerrad | Shell Programming and Scripting | 2 | 08-25-2006 12:20 AM |
| rewrite the same info in 3 different files | strok | Shell Programming and Scripting | 6 | 03-29-2003 01:50 PM |
| Apache Rewrite help! | hassan2 | UNIX for Advanced & Expert Users | 1 | 11-11-2002 01:35 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Delete
Thanks , franklin you method worked, i knew i had to use a while loop and getline in there just didnt know the proper order
![]() Hi everyone, im trying to make the following command line shorter by introducing a script that join up all the grep commands ./new1a < numbers.txt | grep -i -v '^a ' | grep -i -v '^the ' | grep -i -v '^or ' | sort -f How would I go about merging all the greps into a scripe and putting all the words that should be excluded into a data file Last edited by weezybaby; 01-31-2008 at 06:44 PM.. |
|
||||
|
The OP deleted his question, for clarity, this was the request:
Quote:
Try this: Code:
./new < numbers.txt | awk '
BEGIN{while(getline < "datafile.txt" > 0 ) {
arr[$1]=$1
}
close("datafile.txt")
}
!arr[$1]{print}
'
Last edited by Franklin52; 02-01-2008 at 03:46 AM.. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|