Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I just learn the command "diff"
now I have 2 files named text1 and text2
and the contents are like this :
text1:
a
b
c
================
text2:
c
d
e
================
now I use the command :
diff -u text1 text2 > text 3
and the result will be :
--- text1
+++ text2
-a
-b
+d
+e
c
=================
I want to keep the same contents in 2 files
how should I do
please help me
thank you.
if i have a file named text3 and the contents are as below:
================================================================
+a
+b
c
-d
-e
================================================================
all i want to do is to delete the line being with "+" and "-"
then the file text3 will have the content:
==================================================================
c
==================================================================
Is there any linux command can help me delete the line in the content?
I have one more question here, how can I use "sort" to make the text3 contents like this:
=====================================================================
c
+a
+b
-d
-e
=====================================================================
I just want to pick up the lines without starting symbol "+" and "-"
if i have a file named text3 and the contents are as below:
================================================================
+a
+b
c
-d
-e
================================================================
all i want to do is to delete the line being with "+" and "-"
then the file text3 will have the content:
==================================================================
c
==================================================================
Is there any linux command can help me delete the line in the content?
I have one more question here, how can I use "sort" to make the text3 contents like this:
=====================================================================
c
+a
+b
-d
-e
=====================================================================
I just want to pick up the lines without starting symbol "+" and "-"
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.