![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| regular expressions | melanie_pfefer | UNIX for Dummies Questions & Answers | 8 | 04-10-2008 05:24 AM |
| regular expressions | whatever | Shell Programming and Scripting | 4 | 05-20-2007 05:30 PM |
| regular expressions | ragha81 | UNIX for Dummies Questions & Answers | 2 | 03-05-2007 07:24 PM |
| Help with regular expressions | arushunter | Shell Programming and Scripting | 13 | 12-24-2006 12:31 AM |
| regular expressions in c++ | szzz | High Level Programming | 2 | 10-06-2003 11:33 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Diff with Regular Expressions
Hi everybody
I'm trying to use diff to find the differences between two files and show the section of the file where the difference occurred. Diff allows you to use a regular expression to mark the last section header before the difference with the -F flag. That's all fine. My problem is is that only the first 40 characters of the section lines are shown. Most of my section headers are longer than that (100 characters+) and I would like to be able to see it all, especially since some sections begin the same. Input: diff -F [[] -u file1 file2 Output: @@ -1, 1 +1, 1 @@ [FILE1-CHAPTER-1-SECTION-1-HEADER-MORE-T The full line should read [FILE1-CHAPTER-1-SECTION-1-HEADER-MORE- THAN-FORTY-CHARACTERS. The line is just an example, the actual headers are more meaningful and cant be reduced to less than 40 chars. The diff manual says I can use more than one regex for such lines. Can anybody give me an example... Or suggestions... Thanks |
| Bookmarks |
| Tags |
| regex, regular expressions |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|