Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
replace a column with a new column
Name: ahmedwaseem2000 Date: September 5, 2005 at 21:25:19 Pacific OS: unix CPU/Ram: 256
Comment:
Hi Can any one tell me how to replace the 10 column(comma seperated) with a new column(present in a new file single column). Thanks for you
Summary: Hi, I have some data which is comma delimited. How do I change it to be tab delimited? I tried sed 's/,/\t/g' but it just replaced the commas with a t. ...
Summary: Hi, I would like to replace all "mytestcase" with a variable $name. I have a for loop that reads: foreach newname ('more name_list') set name= $newname:r ...
Summary: I think you want each name, first and last, in one column. You could use awk, but it's boring. How about this: #!/bin/ksh sed 's/,/ /g' data.file |xargs -n1 # end script Use sed to replace each comm...