![]() |
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 |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Convert CSV file (with double quoted strings) to pipe delimited file | lehmanbrothers | Shell Programming and Scripting | 11 | 02-13-2009 01:14 PM |
| how to convert Fixed length file to delimited file. | satyam_sat | Shell Programming and Scripting | 7 | 04-03-2008 02:41 AM |
| Searching for text in a Space delimited File | andyblaylock | UNIX for Dummies Questions & Answers | 6 | 11-27-2007 07:33 PM |
| Converting a Delimited File to Fixed width file | raghavan.aero | Shell Programming and Scripting | 2 | 06-06-2007 02:44 PM |
| Converting Tab delimited file to Comma delimited file in Unix | charan81 | Shell Programming and Scripting | 22 | 01-20-2006 09:24 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hi all,
I have a file with single white space delimited values, I want to convert them to a tab delimited file. I tried sed, tr ... but nothing is working. Thanks, Rajeevan D |
|
||||
|
Quote:
Quote:
Quote:
Code:
cat file | tr ' ' '\t' |
|
||||
|
360200tFY10tFEB-LTFt500420t12t0
460213tFY09tFEB-LTFt500420t09t15000 460213tFY09tFEB-LTFt500420t10t15000 077426tFY10tFEB-LTFt550200t12t0 077426tFY11tFEB-LTFt550200t12t0 677120tFY09tFEB-LTFt550200t07t57 677120tFY09tFEB-LTFt550200t09t57.5 977120tFY09tFEB-LTFt550200t06t561.5 477717tFY10tFEB-LTFt550200t12t0 577000tFY09tFEB-LTFt550200t12t327 577050tFY09tFEB-LTFt550200t08t86 cat file | tr ' ' '\t' When I use this, I get the above result. |
![]() |
| Bookmarks |
| Tags |
| convert, space delimited file, tab delimited file |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|