Replace only column 1 entries


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Replace only column 1 entries
# 1  
Old 02-13-2016
Replace only column 1 entries

I want to selectively replace column1 entries ofmy file.

My input file looks like :

Code:
MFTR01000729.1  template test  1       2544 .       +       .       det=item0;ref=taxes:255;details on -individual;local_id=i21;key=rc;temp=19.75 N 34.23 E;disco_type=trail qerty;train=english
MFTR01001239.1  template list    64      2040    .       -       .       det=test0;Parent=item0;key=pair;product=target-market sky
MFTR01000719.1  template in    2002    2040    .       -       .       det=item1;Parent=item0;key=pair;product=target-market sky
MFTR01002225.1  template test  1       2544 .       +       .       det=item5;ref=taxes:255;details on -individual;local_id=i265;key=Mrc;temp=49.25 N 54.22 E;disco_type=trail qUerty;train=english
MFTR01002227.1  template list    64      2040    .       -       .       det=test6;Parent=item6;key=pair;product=target-market sky
MFTR01000121.1  template in    2002    2040    .       -       .       det=item7;Parent=item7;key=pair;product=target-market sky

My needed output is

Code:
product729  template test  1       2544 .       +       .       det=item0;ref=taxes:255;details on -individual;local_id=i21;key=rc;temp=19.75 N 34.23 E;disco_type=trail qerty;train=english
product1239  template list    64      2040    .       -       .       det=test0;Parent=item0;key=pair;product=target-market sky
product719  template in    2002    2040    .       -       .       det=item1;Parent=item0;key=pair;product=target-market sky
product2225  template test  1       2544 .       +       .       det=item5;ref=taxes:255;details on -individual;local_id=i265;key=Mrc;temp=49.25 N 54.22 E;disco_type=trail qUerty;train=english
product2227  template list    64      2040    .       -       .       det=test6;Parent=item6;key=pair;product=target-market sky
product121  template in    2002    2040    .       -       .       det=item7;Parent=item7;key=pair;product=target-market sky


I did
Code:
sed 's/MFTR01*/product/g' input> output

It didnt work completely as my required output diddn't need the .1 in the first columns.

Any suggestions?
Moderator's Comments:
Mod Comment Please use CODE tags when displaying code segments as well as when displaying sample input and sample output.

Last edited by Don Cragun; 02-13-2016 at 03:56 AM.. Reason: Add more CODE tags.
# 2  
Old 02-13-2016
Making lots of assumptions about your input data format and correcting the sed BRE you used to get output closer to what you said you want, you could try:
Code:
sed 's/MFTR010*/product/;s/\.1//' input > output

# 3  
Old 02-13-2016
A different option:
Code:
perl -pe 's/^MFTR010+(\d+)\S*/product$1/' pita_m.file > result.file

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

awk script to extract a column, replace one of the header and replace year(from ddmmyy to yyyy)

I have a csv which has lot of columns . I was looking for an awk script which would extract a column twice. for the first occurance the header and data needs to be intact but for the second occurance i want to replace the header name since it a duplicate and extract year value which is in ddmmyy... (10 Replies)
Discussion started by: Kunalcurious
10 Replies

2. Shell Programming and Scripting

Get extract and replace column with link in a column where it exists

hi i have sample data a,b,c,d,e,g h http://mysite.xyx z,b,d,f,e,s t http://123124# a,b,c,i,m,nothing d,i,j,e,w,nothing output expected is a,b,c,d,e,http://mysite.xyx z,b,d,f,e,http://123124# a,b,c,i,m,nothing d,i,j,e,w,nothing i can get only links using grep -o 'http.*' i... (8 Replies)
Discussion started by: zozoo
8 Replies

3. Shell Programming and Scripting

Replace column help

I have a pipe delimited file. Below are the contents order_id|line_id|retail|cost 2324|1|99.99|50 89793|23|100|23.99 90989|9|23|76.50|56.5 I need to zero out the 3rd column(retail) Below is what i want order_id|line_id|retail|cost 2324|1|0|50 89793|23|0|23.99 90989|9|23|0|56.5 ... (5 Replies)
Discussion started by: venky338
5 Replies

4. UNIX for Dummies Questions & Answers

column replace

Hello. I'm trying to replace the 1st column of text with the word Blue. The string is text and numbers. Trying to learn awk and have been searching forums but can't come up with anything. Any help would be appreciated. (4 Replies)
Discussion started by: jimmyf
4 Replies

5. Shell Programming and Scripting

Replace column that matches specific pattern, with column data from another file

Can anyone please help with this? I have 2 files as given below. If 2nd column of file1 has pattern foo1@a, find the matching 1st column in file2 & replace 2nd column of file1 with file2's value. file1 abc_1 foo1@a .... abc_1 soo2@a ... def_2 soo2@a .... def_2 foo1@a ........ (7 Replies)
Discussion started by: prashali
7 Replies

6. Shell Programming and Scripting

Replace column with column from another file

Hello, I am trying to replace the column in file1 with the column from file2. The two files will have the same amount of rows. Each row will correspond with the same row in the other file. File1 "Replace this column" 500 13-APR-2011... (11 Replies)
Discussion started by: doobe01
11 Replies

7. Shell Programming and Scripting

Match column 3 in file1 to column 1 in file 2 and replace with column 2 from file2

Match column 3 in file1 to column 1 in file 2 and replace with column 2 from file2 file 1 sample SNDK 80004C101 AT XLNX 983919101 BB NETL 64118B100 BS AMD 007903107 CC KLAC 482480100 DC TER 880770102 KATS ATHR 04743P108 KATS... (7 Replies)
Discussion started by: rydz00
7 Replies

8. Shell Programming and Scripting

awk/sed column replace using column header - help

$ cat log.txt Name Age Sex Lcation nfld alias xsd CC 25 M XYZ asx KK Y BB 21 F XAS awe SS N SD 21 M AQW rty SD A How can I replace the column with header "Lcation" with the column with header "alias" and delete the "alias" column? so that the final output will become: Name Age Sex... (10 Replies)
Discussion started by: jkl_jkl
10 Replies

9. UNIX for Advanced & Expert Users

replace a column values with the first value in column

Hi All, I have a file which has data in following format: "Body_Model","2/1/2007","2/1/2007" "CSCH74","0","61" "CSCS74","0","647" "CSCX74","0","3" "CSYH74","0","299" "CSYS74","0","2514" "CSYX74","0","3" "Body_Model","3/1/2007","3/1/2007" "CSCH74","0","88" "CSCS74","0","489"... (3 Replies)
Discussion started by: sumeet
3 Replies

10. Shell Programming and Scripting

Replace 10th column with a new column--- Terriblly hurry

Hi Can any one tell me how to replace the 10th column in a file(comma delimted) with a new file with a single column. Can any one Help me out of the please as soon as possible as i am in a terribley hurry!!!!!! Many THanks, (2 Replies)
Discussion started by: ahmedwaseem2000
2 Replies
Login or Register to Ask a Question