![]() |
|
|
|
|
|||||||
| 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 !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do i remove commas(,) & spaces | anushree.a | Linux | 5 | 05-25-2008 11:39 PM |
| Remove spaces from columns | jacks | Shell Programming and Scripting | 2 | 01-18-2008 06:08 AM |
| How to remove trailing spaces | mahek_bedi | UNIX for Dummies Questions & Answers | 2 | 08-10-2007 04:21 AM |
| need help to remove spaces from first column | tayyabq8 | Shell Programming and Scripting | 4 | 01-28-2006 12:40 AM |
| how to remove spaces in a string using sed. | radhika | Shell Programming and Scripting | 4 | 06-02-2005 12:00 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
remove spaces btw
filename contains:
123 4 1234 5 12345 689 i want result: 1234 12345 12345679 cat filename | awk '{print $1, $2, $3}' will get my result, but too many $$s. sed -e 's/[ ]//g' filename will take care one space, [ ] will take 2 spaces. is it a short way to do this ? |
| Forum Sponsor | ||
|
|
|
|||
|
Quote:
Regards |
| Thread Tools | |
| Display Modes | |
|
|