The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
swap words in a line with sed atticus Shell Programming and Scripting 9 09-13-2008 12:09 PM
print only last two words of a line pradeepreddy Shell Programming and Scripting 5 08-22-2008 02:23 AM
how to get line number of different words if exists in same line Amiya Rath Shell Programming and Scripting 10 07-21-2008 10:55 AM
swaping of first 2 words in every line using sed web123 Shell Programming and Scripting 4 05-28-2008 10:02 AM
count no of words in a line satish@123 Shell Programming and Scripting 7 05-21-2008 03:59 AM

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 09-26-2008
Satyak Satyak is offline
Registered User
  
 

Join Date: Feb 2008
Posts: 85
Post count no of words in a line

hi
i have a line
"abc,def,ghi,abc,def ,ghi,abc,def,ghi,abc,def ,ghi,abc,def,ghi,abc"
I want to print the no of words, words separated by comma

please help
  #2 (permalink)  
Old 09-26-2008
navojit dutta navojit dutta is offline
Registered User
  
 

Join Date: Jul 2007
Location: Singapore
Posts: 32
Quote:
Originally Posted by Satyak View Post
hi
i have a line
"abc,def,ghi,abc,def ,ghi,abc,def,ghi,abc,def ,ghi,abc,def,ghi,abc"
I want to print the no of words, words separated by comma

please help
Using awk u can do in this way :

awk -F"," '{print $NF}' Your_Filename
  #3 (permalink)  
Old 09-26-2008
nua7 nua7 is offline
Registered User
  
 

Join Date: Mar 2008
Location: /bin/sh
Posts: 353
Use wc -w command to count the number of words. Use sed/awk to insert commas in between them
  #4 (permalink)  
Old 09-26-2008
cfajohnson's Avatar
cfajohnson cfajohnson is offline Forum Advisor  
Shell programmer, author
  
 

Join Date: Mar 2007
Location: Toronto, Canada
Posts: 2,369


Code:
line="abc,def,ghi,abc,def ,ghi,abc,def,ghi,abc,def ,ghi,abc,def,ghi,abc"
oIFS=$IFS
IFS=,
set -f
set -- $line
set +f
IFS=$oIFS
echo $#

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 03:00 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