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 > Shell Programming and Scripting
.
google unix.com




Thread: Remove Spaces
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 04-23-2009
javeed7 javeed7 is offline
Registered User
  
 

Join Date: Mar 2008
Posts: 34
Remove Spaces

Hi All,
I have a comma seperated file.
I wanna remove the spaces from column 2. I mean i don't wanna remove the spaces those are presnt in column 1.

ex:
emp name, emp no, salary
abc k, abc 11, 1000 00
bhk s, bhk 22, 2000 00

the output should be:
emp name, emp no, salary
abc k, abc11, 100000
bhk s, bhk22, 200000

column 2 and 3 spaces needs to removed.
Can anyone has the solution for this problem.

Thanks: