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
alias a simple ls -l command ajp7701 Shell Programming and Scripting 4 01-23-2008 06:47 PM
Simple sed command Dave724001 UNIX for Dummies Questions & Answers 7 11-06-2006 11:51 AM
probably simple SED-command ... sysadv Shell Programming and Scripting 2 08-11-2004 08:15 AM
Need help with a simple command kurtbudd1 UNIX for Dummies Questions & Answers 4 07-30-2003 12:46 PM
SImple command question Diabeticus UNIX for Dummies Questions & Answers 4 02-08-2002 09:43 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 10-12-2007
2dumb 2dumb is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 40
Simple AWK command?

I am not that good with AWK. Is there a simple awk command I could use to get the word "this" from the following text besides using "awk -F ":" '{print $2} | awk -F " " '{print $1}"?

:this is:that is:
  #2 (permalink)  
Old 10-12-2007
ghostdog74 ghostdog74 is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2006
Posts: 2,553
Code:
echo ":this is:that is:" | awk '{sub(":","",$1);print $1}'
  #3 (permalink)  
Old 10-12-2007
2dumb 2dumb is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 40
Quote:
Originally Posted by ghostdog74 View Post
Code:
echo ":this is:that is:" | awk '{sub(":","",$1);print $1}'
ghostdog74, thanks for the quick reply that worked great. i am not sure how it worked. how would i get the word "this" from the following?

echo ":is this:is that:"
  #4 (permalink)  
Old 10-12-2007
ghostdog74 ghostdog74 is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2006
Posts: 2,553
Quote:
Originally Posted by 2dumb View Post
ghostdog74, thanks for the quick reply that worked great. i am not sure how it worked. how would i get the word "this" from the following?

echo ":is this:is that:"
it depends on what the word "this" really means. Is it a word you want to find from a string? If that's the case, you can simply search for it.
Code:
echo  ":is this:is that:"  | awk '/this/{print "i got this"}'
If not, you should provide a sample of your input and describe more clearly what you are trying to do.
  #5 (permalink)  
Old 10-12-2007
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,125
Code:
echo ':this is:that is:' | nawk -F'[ :]' '{print $2}'
  #6 (permalink)  
Old 10-12-2007
2dumb 2dumb is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 40
What I have is the output of a time command. What I want is to grab the hours from the line "real" then times the hours by 60 to get the minutes. Then add that to the minutes. To get the total minutes the command ran.

So what I am looking for is a good way to extract the total number of hours and minutes. However some times the output will not show the hours.

Some times it looks like this:
real 1h10m55.46s
user 0m0.00s
sys 0m0.01s

Other times it may be:
real 59m20.32s
user 0m0.00s
sys 0m0.01s
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 01:40 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