column replace


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers column replace
# 1  
Old 10-16-2012
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.
# 2  
Old 10-16-2012
Please post sample of the input and the corresponding desired output.
And, any inputs on these lines would also be appreciated.

Last edited by elixir_sinari; 10-16-2012 at 02:32 AM..
# 3  
Old 10-16-2012
Code:
awk '{sub("[a-zA-Z0-9]*", "Blue", $1)}'1 file

Read about the "sub" function in awk.
This User Gave Thanks to balajesuri For This Post:
# 4  
Old 10-16-2012
also:
Code:
awk '{$1="Blue"}1' infile

This User Gave Thanks to rdrtx1 For This Post:
# 5  
Old 10-16-2012
man do I over-complicate things! thank you so much!
 
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. Shell Programming and Scripting

Replace column value

Hi I need to replace particular column value with blank.For eg 2016-03-21,ABC,"3,447,001" 2016-03-21,DFH,"1,469,922" 2016-03-21,DGH,"1,469" I have data like above.I need to replace the comma in 3rd column with blank in the original file itself .My expected result is given below ... (2 Replies)
Discussion started by: ginrkf
2 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