script problems


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers script problems
# 1  
Old 11-29-2004
script problems

Hi,

Here is an example of a problem I have:

File2: contain the following lines:
a^ aaa^aa aa^~
b^ bbb^bb bb^~
c^ ccc^cc cc^~
d^ dddd^dd dd^~

File1: contain the following lines:
b^ bbb^bb bb^~
c^ ccc^cc cc^~

I get File2 as input and I want to do as following:

for each line in file2 {
if (line exist in file1) print "! "line
>> output
else
print "+ "line >> output
}

I work on tcsh script:
and this is what I wrote:

cat File2 | awk -F"^" '{if (grep -c $0 file1 == 0) print "- "$0 >> output
else print "! "$0 >> output}'

Expected output:
- a^ aaa^aa aa^~
! b^ bbb^bb bb^~
! c^ ccc^cc cc^~
- d^ dddd^dd dd^~

But I get:
! a^ aaa^aa aa^~
! b^ bbb^bb bb^~
! c^ ccc^cc cc^~
! d^ dddd^dd dd^~

Any idea?

Thanks,
Bando.
# 2  
Old 11-30-2004
As long as some lines are not subsets of others, something like
Code:
#!/bin/sh

while read line
do
  # change to fgrep "$line" if required
  grep -F "$line" file1 >/dev/null 2>&1
  if [ "$?" -eq "0" ]; then
    echo "! $line"
  else
    echo "- $line"
  fi
done < file2

should work

Cheers
ZB
# 3  
Old 11-30-2004
Thanks, works like magic.
# 4  
Old 06-13-2005
what is with the fgrep? will run faster?

what is with the fgrep? will run faster?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script Problems

Hi, I'm newbie in the shell script world and i want to solve some problems I am experiencing. My main goal is to create a ksh script to use 2 text files as input to execute a local shell script(create user commands in the criar.users.aix file) through a ssh connection in which the list of... (1 Reply)
Discussion started by: joaochambino
1 Replies

2. Homework & Coursework Questions

Problems executing script

Hi, I'm a complete novice to Linux and UNIX. I'm having trouble getting a script to execute properly. I did a similar script earlier in the semester with no problems. For whatever reason I can't get this one to work. Any help would be greatly appreciated as I'm completely lost and frustrated at... (5 Replies)
Discussion started by: Lindy70
5 Replies

3. Shell Programming and Scripting

shell script to call perl script problems

Ok, don't ask me why, but all calls to perl must be called by a shell script. Its really not ideal, but its what I have to work with. Calling it isnt the issue, its passing in the arguments. I have about 1000 perl scripts to call by a shell script. Right now, I'm executing the shell script... (3 Replies)
Discussion started by: regexnub
3 Replies

4. UNIX for Dummies Questions & Answers

Problems with script and Cron

Hi Guys, total newbie here, Ive read through some of the threads about cron and scripts not working and have still drawn a blank as to why mine isnt working correctly. I have a script that runs the ausearch with a set of criteria i have setup, the only access i have to the system is via... (5 Replies)
Discussion started by: richie190784
5 Replies

5. Shell Programming and Scripting

two script problems

i have two problems with my phone book script the first i want to only allow a valid name if it has letters and spaces not a number in the name. so "joe smith" is ok "joe smith1" is not ok. the second problem is how can i cut a name out of a txt file i have this as my test txt file joe blogs... (3 Replies)
Discussion started by: zappedback
3 Replies

6. Shell Programming and Scripting

Script problems

Hi Can anybody please explain how the below script works and if there is any problems with it? The script is part of an archival process but it keeps crashing out. #!/sbin/sh - clear purgelist="/var/opt/moto/live/scripts/old_messages_purge_list" for i in `cat $purgelist` do ... (2 Replies)
Discussion started by: runnerpaul
2 Replies

7. Shell Programming and Scripting

Shell script problems to do

Does anyone know a good site to do shell script problems? (0 Replies)
Discussion started by: cleansing_flame
0 Replies

8. Shell Programming and Scripting

Problems with an if/then loop within a script

Hi there, I have written a script to clear out log files from the var/tmp dir. It works up to a point. What I needed to do was to exit the script if there was no files to be deleted. I can get this working on a test script but when I implement it into my program it errors out with a `then` not... (3 Replies)
Discussion started by: lodey
3 Replies

9. UNIX for Dummies Questions & Answers

Copy Script Problems .....

I got this script: print -n "Enter file name: " read name .... ..... ..... etc but at the prmpt, when I press enter (without typin a word), comes up with sum error message, is there away of getting it not to print that message?? (8 Replies)
Discussion started by: Makaveli.2003
8 Replies

10. UNIX for Dummies Questions & Answers

having ksh script problems

well i have written a script to telnet and ftp to all my servers, the script runs great, BUT i can not for the life of me figure out how to get the script to repeat if the conditions are not filled. this is what i have so far ######################################### TorF(){ echo T... (4 Replies)
Discussion started by: jerzey4life
4 Replies
Login or Register to Ask a Question