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
count the max by awk halola85 Shell Programming and Scripting 9 12-01-2008 07:44 AM
replaying a record count with another record count er_zeeshan05 Shell Programming and Scripting 2 10-30-2008 12:14 AM
Sorting using count, grep and count sukhpal_78 UNIX for Dummies Questions & Answers 2 06-27-2008 01:13 AM
Display the count of files wayne1411 Shell Programming and Scripting 4 01-09-2008 10:09 PM
How to count the record count in an EBCDIC file. oracle8 UNIX for Dummies Questions & Answers 1 07-26-2006 08:22 PM

Reply
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 02-26-2009
chebarbudo's Avatar
chebarbudo chebarbudo is offline
Registered User
  
 

Join Date: Nov 2008
Location: various
Posts: 188
Question How to display and count

Hi there,
I'd like to find a way to display a string and count the words in it.
Code:
supernova:~# echo 'hello world' | tee - | wc
Unfortunately, this doesn't work.

Any idea?
Thanks in advance.
Santiago
  #2 (permalink)  
Old 02-26-2009
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,122
'man wc'
Code:
$ echo 'hello world' | wc -w
       2
$ echo 'hello world' | awk '{print NF, $0}'
2
  #3 (permalink)  
Old 02-26-2009
chebarbudo's Avatar
chebarbudo chebarbudo is offline
Registered User
  
 

Join Date: Nov 2008
Location: various
Posts: 188
Thanks vgersh99 for your participation but this doesn't do anything more than my previous tries: It only gives the number of words.
Quote:
Originally Posted by chebarbudo View Post
I'd like to find a way to display a string and count the words in it.
For example:
Code:
supernova:~# magiccommand 'hello world'
hello world
2
supernova:~# magiccommand 'how are you'
how are you
3
supernova:~# magiccommand 'must be something pretty tricky'
must be something pretty tricky
5
Any other idea?
Santiago
  #4 (permalink)  
Old 02-26-2009
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,122
Code:
$ echo 'hello world' | awk '{print $0 ORS NF}'
hello world
2

Last edited by vgersh99; 02-26-2009 at 08:26 PM.. Reason: sep lines
  #5 (permalink)  
Old 02-27-2009
chebarbudo's Avatar
chebarbudo chebarbudo is offline
Registered User
  
 

Join Date: Nov 2008
Location: various
Posts: 188
Nice job, thanks a lot.
  #6 (permalink)  
Old 02-27-2009
chebarbudo's Avatar
chebarbudo chebarbudo is offline
Registered User
  
 

Join Date: Nov 2008
Location: various
Posts: 188
A bit trikier now.
From the result of a mysql query I actually need to:
1) save the number of rows into one variable ($count)
2) save first field of last line into another variable ($id)
Can you assign variables inside a awk script?

The query:
Code:
santiago:~$ mysql -e 'SELECT id, name FROM terminal'
+----+------------------+
| id | name             |
+----+------------------+
|  3 | John Smith       |
| 18 | Alan Parker      |
| 41 | Bob Johnson      |
+----+------------------+
In that case, $count = 4 and $id = 41.

I could do that by running the query two times but that's what I'd like to avoid.
Code:
santiago:~$ count=$(mysql -e 'SELECT id, name FROM terminal' | wc -l)
santiago:~$ id=$(mysql -e 'SELECT id, name FROM terminal' | tail -1 | cut -f1)
Any advice?
Santiago

Last edited by chebarbudo; 02-27-2009 at 09:50 AM..
  #7 (permalink)  
Old 02-27-2009
rrk001 rrk001 is offline
Registered User
  
 

Join Date: Feb 2009
Location: Mumbai, India
Posts: 9
Assuming that the output of mysql command would be :
Code:
id	name
3	John Smith
18	Alan Parker
41	Bob Johnson
you can try this.
Code:
result=$(mysql -e 'SELECT id, name FROM terminal' | awk '{count=NR;id=$1} END{print count" "id}')
count=$(echo $result | awk '{print $1}')
id=$(echo $result | awk '{print $2}')
You might have to play around with count=NR;id=$1 if there are formatters/separators in the output.
Reply

Bookmarks

Tags
echo, tee, wc

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 09:32 PM.


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