![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| 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 |
| replace only 1st word of a line if it comes in the subsequent lines at same postion. | geeko | Shell Programming and Scripting | 9 | 06-03-2009 07:25 AM |
| how can i replace / with new line in shell script or sed ? | mail2sant | Shell Programming and Scripting | 3 | 04-25-2008 12:59 AM |
| How to replace a word at a parcitular line | stevefox | Shell Programming and Scripting | 3 | 04-04-2007 02:27 AM |
| Can a shell script pull the first word (or nth word) off each line of a text file? | tricky | Shell Programming and Scripting | 5 | 08-17-2006 06:29 AM |
| find a shell and replace the line | jvellon | UNIX for Advanced & Expert Users | 1 | 06-13-2006 08:44 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hi folks,
have a look into the attachment, i am not familiar with unix, can you please help me in this regard. thanks in advance, ![]() regards, Geeko |
|
||||
|
Suggest that you copy and paste content from the word document here (unless it's too big) or attach it as a pure textfile. People might hesitate to open a word-file they don't know anything about.
|
|
||||
|
Code:
while(<DATA>){
my @tmp = split(" ",$_,2);
if($.==1){
$key=$tmp[0];
print;
}
else{
if(/$key/i){
$tmp[0]=sprintf ' ' x length($tmp[0]);
print join " ",@tmp;
}
else{
$key=$tmp[0];
print;
}
}
}
__DATA__
Maharastra Mumbai worli
Maharastra Mumbai navy
maharastra Pune
Maharastra Nagpur
Karnataka Bangalore
Karnataka Mysore
Karnataka Mangalore
Punjab Amritsar
punjab Jalandar
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|