![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Post Here to Contact Site Administrators and Moderators Make Suggestions About Forums, Features, or Content here. Discuss Rules and Guidelines. Get Forum Support Here. (Registered Users Only) |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| to find numbers in a string | fongthai | Shell Programming and Scripting | 12 | 11-22-2007 01:34 PM |
| to find numbers using awk | cdfd123 | Shell Programming and Scripting | 1 | 10-02-2007 09:19 AM |
| how to find port numbers a web server is listening to | laddu | IP Networking | 6 | 02-16-2007 06:40 AM |
| find 2 line numbers, grab text in between | Da_Duck | Shell Programming and Scripting | 11 | 09-26-2006 09:51 AM |
| extracting uncommon part between two files | sabyasm | Shell Programming and Scripting | 2 | 11-06-2005 10:25 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
|
program to find the uncommon numbers between two files.
Hi,
I need to extract the uncommon numbers from file1 and file2 For Example: File1 1 2 3 4 5 File2 1 2 3 4 5 6 7 8 9 10 If i compare this two file the output should be iam using solaris version 5.8 pls give me script which should be compatible to run in this version Thanks in advance. output file should be 6 7 8 9 10 |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
diff
A clumpsy solution,
Code:
diff -e /tmp/f1 /tmp/f2 | sed -e '1d' -e '$d' Thanks Nagarajan G |
|
#3
|
||||
|
||||
|
Thanks Nagarajan .neenga tamilaa
|
||||
| Google The UNIX and Linux Forums |