Sponsored Content
Full Discussion: What's wrong my sed?
Top Forums Shell Programming and Scripting What's wrong my sed? Post 302667931 by yanglei_fage on Sunday 8th of July 2012 05:52:27 AM
Old 07-08-2012
Quote:
Originally Posted by Scrutinizer
Try replacing sed with:
Code:
grep -F "$line" file2

--
or replace everything with:
Code:
awk 'NR==FNR{A[$1]; next} $2 in A' file1 file2


It's strange that if I instead with "grep -v "$line" file2" it will go endless loop,I want to show the file2'line that not contains file1

Thanks
Lei

---------- Post updated at 02:50 AM ---------- Previous update was at 02:44 AM ----------

Quote:
Originally Posted by yanglei_fage
It's strange that if I instead with "grep -v "$line" file2" it will go endless loop,I want to show the file2'line that not contains file1

Thanks
Lei
sorry,it's not a endless loop, I make a mistake, actually want to show the file2 which not contains file1's line, how could I do that

---------- Post updated at 02:52 AM ---------- Previous update was at 02:50 AM ----------

Quote:
Originally Posted by yanglei_fage
It's strange that if I instead with "grep -v "$line" file2" it will go endless loop,I want to show the file2'line that not contains file1

Thanks
Lei

---------- Post updated at 02:50 AM ---------- Previous update was at 02:44 AM ----------



sorry,it's not a endless loop, I make a mistake, actually want to show the file2 which not contains file1's line, how could I do that
and with below cmd

Code:
while read line
do
    sed -i '/${line}/d' ./file2 #to delete the line which contains in file1
done < ./file1

it will casue error, I don't know why

Last edited by Scrutinizer; 07-08-2012 at 10:19 AM.. Reason: code tags
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

am i wrong?

knew nothing about unix - linux untill a week ago when i started out to learn the basics. I think i'm aproaching unix wrong, i'm trying to compare unix with dos, searching similar commands. Did some great things for dumbass newbie like writing scripts to mount cdrom and floppy, that's the... (4 Replies)
Discussion started by: termiEEE
4 Replies

2. Shell Programming and Scripting

What's wrong with this sed command? delete & append

I want to write a sed command that does the following work: file: <a>asdfasdf<\s> <line>hello</line> <b>adf<\c> <b>tttttttt<\c> output: name=hello sed -e 's/^*//' -n -e '/<line>/s/<*>//gp;' -e 's/^/name="/g' file but I can not append "=" after getting the line with... (5 Replies)
Discussion started by: minifish
5 Replies

3. Shell Programming and Scripting

What am I doing wrong?

Trying to run a script as a different user (sudo userx inside the script) but after I call the script it just sits in memory until I <ctrl D>. If I do whoami before the <ctrl D> the system returns the userid that was invoked in the script. Is there any way to get around this behavior? TIA,... (3 Replies)
Discussion started by: gwfay
3 Replies

4. UNIX for Dummies Questions & Answers

What is wrong in here ???

]#PATH=/usr/bin:/etc:/bin:/boot/grub:/boot/grup/bin: /boot/solaris/bin:/sbin:/usr/openwin/bin:/usr/5bin://usr/X11/bin:/usr/apache/bin:/usr/apache2/bin:/usr/appserver/bin:... (9 Replies)
Discussion started by: microbot
9 Replies

5. Shell Programming and Scripting

SED to delete last word on line...what's wrong?

I have a line that gets pulled from a database that has a variable number of fields, fields can also be of a variable size. Each field has a variable number of spaces between them so there is no 'defined' delimiter. The LastData block is always a single word. What I want to do is delete the... (2 Replies)
Discussion started by: Bashingaway
2 Replies

6. Shell Programming and Scripting

What's wrong with my sed?

lyang0@lyang0-OptiPlex-755:~$ cat xx Settings for eth1: Supported ports: Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half... (11 Replies)
Discussion started by: yanglei_fage
11 Replies

7. Shell Programming and Scripting

Why result is wrong here ? whether break statement is wrong ?

Hi ! all I am just trying to check range in my datafile pls tell me why its resulting wrong admin@IEEE:~/Desktop$ cat test.txt 0 28.4 5 28.4 10 28.4 15 28.5 20 28.5 25 28.6 30 28.6 35 28.7 40 28.7 45 28.7 50 28.8 55 28.8 60 28.8 65 28.1... (2 Replies)
Discussion started by: Akshay Hegde
2 Replies

8. UNIX for Dummies Questions & Answers

What is wrong with: echo $PATH | sed s/:/\\n/g

Hello all! I am on Mac (10.8.4) and my shell tcsh (man says version: Astron 6.17.00). Just to precise my tcsh: echo $LC_CTYPE UTF-8 I want to replace all ':' with a new line, to get all paths on one line. I don't find a way to make my shell accept the "\n" My start was: echo... (17 Replies)
Discussion started by: marek
17 Replies

9. Post Here to Contact Site Administrators and Moderators

Whether anything went wrong ?

Hi could see all the post with this old color scheme ( legacy (dark) vBulletin color scheme (unsupported)) except this post, please look at the screenshot . Looks like url parsing also some problem is there getting "Page not found" error. -- Akshay --edit-- screenshot is there in album... (18 Replies)
Discussion started by: Akshay Hegde
18 Replies

10. Shell Programming and Scripting

Same sed code prints(p) correct, but writtes(w) wrong output

Dear all, I am using sed as an alternative to grep in order to get a specific line from each of multiple files located in the same directory. I am using sed because it prints the lines in the correct order (unlike grep). When I write sed code that prints out the output I get it correct, but... (1 Reply)
Discussion started by: JaNaJaNa
1 Replies
All times are GMT -4. The time now is 05:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy