The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
How to remove the specific lines from file using perl dipakg Shell Programming and Scripting 4 06-11-2008 03:45 AM
Insert 2 lines in a file at a specific location potro Shell Programming and Scripting 2 05-08-2008 08:38 PM
how to remove specific lines from a file bluemoon1 Shell Programming and Scripting 17 10-07-2007 11:40 PM
Insert lines at specific location in file hcclnoodles Shell Programming and Scripting 17 03-28-2007 09:00 AM
remove specific lines from a file hcclnoodles Shell Programming and Scripting 14 09-07-2006 01:31 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 04-09-2008
gopikgunda gopikgunda is offline
Registered User
  
 

Join Date: Apr 2008
Posts: 1
Remove duplicates from File from specific location

How can i remove the duplicate lines from a file, for example

sample123456Sample
testing123456testing
XXXXX131323XXXXX
YYYYY423432YYYYY
fsdfdsf123456gsdfdsd

all the duplicates from column 6-12 , must be deleted. I want to consider the first row, if same comes in the given range i want to delete the line.
The output am expecting is
sample123456Sample
XXXXX131323XXXXX
YYYYY423432YYYYY

Thanks
  #2 (permalink)  
Old 04-09-2008
ghostdog74 ghostdog74 is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2006
Posts: 2,557

Code:
awk 'NR==1{ get=substr($0,7,6);print $0 }
NR>1 && $0 !~ get{
   print $0
}' file

Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 02:02 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0