The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com



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
How do i remove commas(,) & spaces anushree.a Linux 5 05-26-2008 02:39 AM
Remove spaces from columns jacks Shell Programming and Scripting 2 01-18-2008 10:08 AM
How to remove trailing spaces mahek_bedi UNIX for Dummies Questions & Answers 2 08-10-2007 07:21 AM
need help to remove spaces from first column tayyabq8 Shell Programming and Scripting 4 01-28-2006 04:40 AM
how to remove spaces in a string using sed. radhika Shell Programming and Scripting 4 06-02-2005 03:00 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 05-15-2008
tjmannonline tjmannonline is offline
Registered User
  
 

Join Date: Apr 2008
Posts: 91
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 ?
  #2 (permalink)  
Old 05-15-2008
Franklin52 Franklin52 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2007
Posts: 4,302
Code:
awk '{gsub(" ","")}1' file
Regards
  #3 (permalink)  
Old 05-15-2008
tjmannonline tjmannonline is offline
Registered User
  
 

Join Date: Apr 2008
Posts: 91
i am new to unix world. if you don't mind, would you please explain the syntax.

many thanks to you, and this site.
  #4 (permalink)  
Old 05-15-2008
Franklin52 Franklin52 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2007
Posts: 4,302
Quote:
Originally Posted by tjmannonline View Post
i am new to unix world. if you don't mind, would you please explain the syntax.

many thanks to you, and this site.
The gsub function substitutes all spaces with nothing and awk evaluates the 1 as true and prints the entire line.

Regards
  #5 (permalink)  
Old 05-15-2008
era era is offline Forum Advisor  
Herder of Useless Cats (On Sabbatical)
  
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,652
Code:
tr -d ' ' <file
tr replaces characters with other characters, or, with the -d option, with nothing.
  #6 (permalink)  
Old 05-15-2008
shamrock shamrock is offline Forum Advisor  
Registered User
  
 

Join Date: Oct 2007
Location: USA
Posts: 750
Quote:
Originally Posted by tjmannonline View Post
sed -e 's/[ ]//g' filename will take care one space, [ ] will take 2 spaces.

is it a short way to do this ?
Code:
sed 's/  *//g' file
  #7 (permalink)  
Old 05-26-2008
siba.s.nayak siba.s.nayak is offline
Registered User
  
 

Join Date: Jun 2007
Posts: 166
Quote:
Originally Posted by shamrock View Post
Code:
sed 's/  *//g' file
I think this is the easiest answer and also good implementation of RE.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 12:10 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0