- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Awk examples !!
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 06:51 PM
тАО08-29-2006 06:51 PM
Awk examples !!
Can somebody gimme good examples (not man pages) for 'awk' usage...
Thxs, WH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 07:01 PM
тАО08-29-2006 07:01 PM
Re: Awk examples !!
not clear what you are after, however...
Example of awk useage:
http://www.student.northpark.edu/pemente/awk/awk1line.txt
And for further study:
http://en.wikipedia.org/wiki/AWK_programming_language
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 08:03 PM
тАО08-29-2006 08:03 PM
Re: Awk examples !!
a little example:
awk ├в F├в ├в ├в { print $1, $2, $3 }├в file_name
-F : Field Separator (in this case is ├в blank├в ).
So you can select first three column from "file_name" (in "file_name" data are formatted in columns).
Hth
regards
pg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 08:12 PM
тАО08-29-2006 08:12 PM
Re: Awk examples !!
awk ├в F├В┬┤ ` `{ print $1, $2, $3 }├В┬┤ file_di_input
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 08:15 PM
тАО08-29-2006 08:15 PM
Re: Awk examples !!
awk -├В ├В F├В┬┤ ` `{ print $1, $2, $3 }├В┬┤ file_di_input
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 08:39 PM
тАО08-29-2006 08:39 PM
Re: Awk examples !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 10:07 PM
тАО08-29-2006 10:07 PM
Re: Awk examples !!
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2006 02:10 AM
тАО08-30-2006 02:10 AM
Re: Awk examples !!
I'm not convinced that examples in the abstract are going to be that helpful.
A nice tutorial (*with* examples *and* explanations) can be found here:
http://www.gnu.org/software/gawk/manual/gawk.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2006 02:47 AM
тАО08-30-2006 02:47 AM
Re: Awk examples !!
If you are learning from scratch, I might suggest a Plan B: learn Perl. The learning curve is steeper but the power is much greater.
The O'reilly "sed & awk" is hard to beat and it has a good sectio on regular expressions. RE's are really the key to effectively using awk, sed, or Perl. Perl's RE's are RE's on steroids and make things that might require several steps in awk doable in one step.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2006 03:13 AM
тАО08-30-2006 03:13 AM
Re: Awk examples !!
strings /etc/lvmtab |grep vg |awk -F "\/" '{print $3}'
which will print only name of volume groups (excludes /dev path)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2006 08:11 PM
тАО08-30-2006 08:11 PM
Re: Awk examples !!
# Show mount points over PCT
bdf|awk -v PCT=90 'NR==1||substr($5,1,index($5,"%")-1)+0>=PCT'
*
# Remove empty files
rm -f $(ll|awk '$9&&!$5 {print "rm -f " $9}')
# See all active Oracle databases info
awk -F: '!/^[#|*]/&&!/^$/&&$3="Y"' /etc/oratab
HTH,
Art
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2006 08:20 PM
тАО08-30-2006 08:20 PM
Re: Awk examples !!
Small one
To print user names from /etc/passwd file,
awk -F ":" '{ print $1 }' /etc/passwd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2006 12:41 AM
тАО08-31-2006 12:41 AM
Re: Awk examples !!
And, happily, it starts with a simple example and builds to complex programs.
I expect by the time you finish page 30 will be writing just about anything you need, including the one-liners used so often in shell scripts.
Fred
The AWK Programming Language
by Aho, Kernighan and Weinberger
Addison-Wesley Publishing Company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2006 12:51 AM
тАО08-31-2006 12:51 AM
Re: Awk examples !!
This one has quite a few:
http://sparky.rice.edu/~hartigan/awk.html
Chapter 4 of "Unix Unleashed Internet" is my fav:
http://docs.rinet.ru/UNIXi/ch04.htm
Rgds...Geoff