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: awk script
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 03-17-2008
sysdba sysdba is offline
Registered User
  
 

Join Date: Mar 2002
Location: Taiwan
Posts: 1
Smile Re: delete space by using awk

echo 'Can I Help you' | awk '{ORS="";for (i=1;i<=NF;i++) print $i}'

I hope the above will help you.