Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

AWK | Topic profile

Topic profile page for AWK. This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: AWK.
Topic "Awk" was discussed 11,722 times on 1,126 sites in last 3 months
Search discussions, forums, images, videos, about "Awk" on BoardReader!
 

BoardReader Trendy!

Topic 1:

Topic 2:

Topic 3:

Domain Profile
Domain:

Posting activity graph on awk:

Posts by:  day  week  month 

 

Related topics:


awk was discussed on the following sites:

The UNIX Forums - the Top UNIX & Linux Q&A on the Web The UNIX Forums - the Top UNIX & Linux Q&A on... - 4,646 The UNIX Forums - the Top UNIX & Linux Q&A on the Web - site profile
LinuxQuestions.org - where Linux users come for help LinuxQuestions.org - where Linux users come for... - 1,322 LinuxQuestions.org - where Linux users come for help - site profile
Forum Ubuntu-fr.org Forum Ubuntu-fr.org - 278 Forum Ubuntu-fr.org - site profile
Forums de Developpez.com Forums de Developpez.com - 264 Forums de Developpez.com - site profile
Tek-Tips Forums Tek-Tips Forums - 232 Tek-Tips Forums - site profile

 

Related threads on awk:

PrinceVicious @ Killer_Kid awk ew just go watch shelter why dont yah...  Twitter / PrinceVicious - site profile PrinceVicious - forum profile  Go to this thread  @ Killer_Kid awk ew just go watch shelter why dont yah lol, ihate ths! Haha its anoying >_< 8:45 PM Jul 14th from txt
Shell Programming and Scripting awk counting number of occurences  The UNIX Forums - the Top UNIX & Linux Q&A on the Web - site profile Shell Programming and Scripting - forum profile  Go to this thread  awk counting number of occurences
Ben Stanfield
RT @ DrErnie : Use "$ uname -v | awk -F_ '{print...  Twitter / benstanfield - site profile Ben Stanfield
 - forum profile  Go to this thread  RT @ DrErnie : Use "$ uname -v | awk -F_ '{print $2}'" to find out what kernel #snowleopard is booting from (i386 vs x86_64) 2:08 PM Sep 18th from Tweetie
UNIX for Dummies Questions & Answers awk - display from line number to regex  The UNIX Forums - the Top UNIX & Linux Q&A on the Web - site profile UNIX for Dummies Questions & Answers - forum profile  Go to this thread  awk - display from line number to regex
Shell Programming and Scripting awk to print field no 10 and complete event  The UNIX Forums - the Top UNIX & Linux Q&A on the Web - site profile Shell Programming and Scripting - forum profile  Go to this thread  awk to print field no 10 and complete event

Latest threads on awk:

Shell Programming and Scripting
Started 1 day, 5 hours ago (2009-11-27 01:16:00)  by honglus
I want to filter 2nd column = 2 using awk Code: $ cat t 1 2 2 4 $ VAR=2 #variable worked in print Code: $ cat t | awk -v ID=$VAR ' { print ID}' 2 2 # but variable didn't work in awk filter Code: $ cat t | awk -v ID=$VAR '$2~/ID/ { print $0}'
Shell Programming and Scripting
Started 2 days, 1 hour ago (2009-11-26 05:40:00)  by abhinav192
Hi All, I have about 10000 files having names of the same pattern I am using awk to match the pattern. Inside the awk block how can i delete all the 10000 files.. Or is there any other way to delete files in bulk... "rm" command fails with the message that argument list is too large
pfctdayelise
Started 2 days, 5 hours ago (2009-11-26 01:14:00)  by pfctdayelise
Source: pfctdayelise - Identi.ca More from this site pfctdayelise - Identi.ca - site profile 
Forum:  pfctdayelise  pfctdayelise - forum profile
Thread:  Show this thread (4 posts) More from awk and regexps are examples of unix "minilanguages" or DSLs !osdc  Thread Thread info: awk and regexps are examples of unix "minilanguages" or DSLs !osdc Size: 663 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "awk and regexps are examples of unix "minilanguages" or DSLs !   osdc                                          about 20 hours ago               from            web :: pfctdayelise :: pfctdayelise - Identi.ca"
UNIX for Dummies Questions & Answers
Started 2 days, 1 hour ago (2009-11-26 05:41:00)  by RAFC_99
I know you can awk for columns but how do you awk for rows? Fo instance rows 10-20. Any help much appreciated.
Oracle Enterprise Linux
Started 3 days, 3 hours ago (2009-11-25 03:04:00)  by user637544
Hi, I have a file and i want to encrypt the third and fourth fields. cut -f3 -d'|' file | tr 'A-Z' 'a-z' cut -f4 -d'|' file | tr '0-9' ' ' But i want the encrypted field with the complete file, not just the field. awk -F'|' '{ OFS='|'; tr 'A-Z' 'a-z'
Source: www.oracle.com More from this site www.oracle.com - site profile 
Forum:  Oracle Enterprise Linux  Oracle Enterprise Linux - forum profile
Thread:  Show this thread (5 posts) More from Using tr in awk  Thread Thread info: Using tr in awk Size: 620 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Using tr in awk :: Oracle Enterprise Linux :: www.oracle.com"
Shell Programming and Scripting
Started 3 days, 7 hours ago (2009-11-24 23:36:00)  by abhinav192
Hi All, How do we call a method existing in another file inside awk. After matching a pattern i want to call a method secureCopy that exists in another file, but method not getting called: Code: ls -l | awk -v var2=$servername -v var1=$srcserverpath -v var3=$tgtpath ' /File19112009Name[0-9]+\.xml$/ { printf ("abhinav"); printf ($NF); >> method call-->> secureCopy...
Shell Programming and Scripting
Started 3 days, 7 hours ago (2009-11-24 23:35:00)  by macnetdaemon
greetings all, I am have a heck of a time trying to accomplish a very simple thing. I have an array of "shortnameid" created from a dscl output. I want to assign shortname=word1 and id=word2. I have tried shortname=$(${textArray[$i]} | awk '{print $1}') - and get 'awk : cannot open file - and the prints word 1. e.g. awk : cannot open file johnsmith Using the syntax >>echo ${...
Shell Programming and Scripting
Started 3 days, 7 hours ago (2009-11-24 23:35:00)  by madfox
hi, Code: awk -F ";" '{if($10>500) then i++; } END{print i}' event_file_FR12_202_24-11-2009_* | less How to modify and add to this above to print the complete line in less ex : Code: 4712714002021527;15298888;241129 095614 558;131;0;0;63u;0;NA;44;139257004;1;155130;159728; 531920;Y;PRE;0;0;NA;NA;0;NA;0;NA; 4713564002021779;152989;242009 095614 559;131;0;0;63u;0...
Linux
Started 3 days, 9 hours ago (2009-11-24 21:51:00)  by user637544
Hi, i want to use tr command in awk. Please guide me. Also, how to use shell variables in awk?
Source: www.oracle.com More from this site www.oracle.com - site profile 
Forum:  Linux   Linux
 - forum profile
Thread:  Show this thread (2 posts) More from Using Shell commands in AWK  Thread Thread info: Using Shell commands in AWK Size: 333 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Using Shell commands in AWK :: Linux
 :: www.oracle.com"
crwenewswire
Started 4 days, 12 hours ago (2009-11-23 18:20:15)  by crwenewswire
Source: crwenewswire - Identi.ca More from this site crwenewswire - Identi.ca - site profile 
Forum:  crwenewswire  crwenewswire - forum profile
Thread:  Show this thread (1 post) More from Blog Post: S,AWK,T,PUMD,PUMDU,PUMDW,CSRH brought to you by Stock Hot Tips http://ping.fm/4bgMe  Thread Thread info: Blog Post: S,AWK,T,PUMD,PUMDU,PUMDW,CSRH brought to you by Stock Hot Tips http://ping.fm/4bgMe Size: 190 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Blog Post: S,AWK,T,PUMD,PUMDU,PUMDW,CSRH brought to you by Stock Hot Tips  http://ping.fm/4bgMe :: crwenewswire :: crwenewswire - Identi.ca"
 

Hot threads on awk:

singapore
Started 1 week, 1 day ago (2009-11-20 00:00:00)  by azrul
bgi no awk bolih
Source: Singapore Forum - Topix More from this site Singapore Forum - Topix - site profile 
Forum:  singapore  singapore - forum profile
Thread:  Show this thread (1 post) More from nk talipon awk - Topix  Thread Thread info: nk talipon awk - Topix Size: 16 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "nk talipon awk - Topix :: singapore :: Singapore Forum - Topix"
crwenewswire
Started 4 days, 12 hours ago (2009-11-23 18:20:10)  by crwenewswire
Source: crwenewswire - Identi.ca More from this site crwenewswire - Identi.ca - site profile 
Forum:  crwenewswire  crwenewswire - forum profile
Thread:  Show this thread (1 post) More from Blog Post: S,AWK,T,PUMD,PUMDU,PUMDW,CSRH brought to you by Stock Hot Tips http://ping.fm/4TAwr  Thread Thread info: Blog Post: S,AWK,T,PUMD,PUMDU,PUMDW,CSRH brought to you by Stock Hot Tips http://ping.fm/4TAwr Size: 190 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Blog Post: S,AWK,T,PUMD,PUMDU,PUMDW,CSRH brought to you by Stock Hot Tips  http://ping.fm/4TAwr :: crwenewswire :: crwenewswire - Identi.ca"
Shell Programming and Scripting
Started 1 week, 1 day ago (2009-11-20 02:47:00)  by abhinav192
Hi all, In a script like : job_date=.... ls -l 2>/dev/null | awk -v var =$job_date ' /Name\.Version\.[0-9]+\.xml$/ { How can i include a script variable job_date store in "var" in the pattern " /Name\.Version\.[0-9]+\.xml$/ " Thanks in advance
Shell Programming and Scripting
Started 1 week, 1 day ago (2009-11-19 12:01:00)  by achak01
Friends, I have to find out the greatest amoings three values using awk. Actually i have to run the iostat -d command on my linux box for 5 or 6 iterations and print the largest value for tps at each iteration for e.g Code: iostat -d 3 3 Linux 2.6.18-8.el5 (abhijit) 11/19/2009 _i686_ (2 CPU) Device: tps Blk_read/s Blk_wrtn/s Blk_read Blk_wrtn sda...
Tutorials
Started 6 days, 2 hours ago (2009-11-22 04:50:00)  by Art Johnson
For some time now, I have been thinking about how easy it would be to "automate" the reports for our PlanetAMD64 Folding@Home Team, using the text data that is easily 'copy-and-pasted' from kakaostats.com . The data from kakaostats.com is easily copied into Notepad, for example, and makes this text file:   PlanetAMD64_2009_Nov_21_11pm_PST.txt ( 2.58K ) Number of downloads: 0...
Source: PlanetAMD64 More from this site PlanetAMD64 - site profile 
Forum:  Tutorials  Tutorials - forum profile
Thread:  Show this thread (7 posts) More from Text file processing with AWK/GAWK  Thread Thread info: Text file processing with AWK/GAWK Size: 9,375 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Text file processing with AWK/GAWK :: Tutorials :: PlanetAMD64"
Linux - General
Started 1 week, 1 day ago (2009-11-19 15:29:00)  by beeblequix
1. file contains 4 columns -- a. business date b. transaction date c. acct# d. transaction# Needed to use each field from each line as input to query the database to pull a 5th field. Found code on this forum to set up an array -- in this case each line is set to a variable. Then I used a while-do-done statement to step through the total number of lines to know when to quit....
Source: LinuxQuestions.org - where Linux users come for he... More from this site LinuxQuestions.org - where Linux users come for help - site profile 
Forum:  Linux - General  Linux - General - forum profile
Thread:  Show this thread (3 posts) More from bash: use file as input into array, parse out other variables from array
using awk  Thread Thread info: bash: use file as input into array, parse out other variables from array
using awk Size: 2,003 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "bash: use file as input into array, parse out other variables from array using awk :: Linux - General :: LinuxQuestions.org - where Linux users come for he..."
Programming
Started 1 week, 1 day ago (2009-11-19 07:54:00)  by sebelk
Hi, What should the following expression match? Could you explain me? ([^[(
Source: LinuxQuestions.org - where Linux users come for he... More from this site LinuxQuestions.org - where Linux users come for help - site profile 
Forum:  Programming  Programming - forum profile
Thread:  Show this thread (8 posts) More from What should some Regex match in awk?  Thread Thread info: What should some Regex match in awk? Size: 161 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "What should some Regex match in awk? :: Programming :: LinuxQuestions.org - where Linux users come for he..."
Linux - General
Started 3 days, 3 hours ago (2009-11-25 03:20:00)  by jeesun
I have a file generated in every event occurred. In this file i have a entries like bellow Summary: Adapter at hardware path 0/6/1/0 : Received an interrupt indicating that a primitive was transmitted and sometimes like bellow Summary: Adapter at hardware path 0/6/1/0 : Received an interrupt indicating that a primitive was transmitted What I need is to ...
Source: LinuxQuestions.org - where Linux users come for he... More from this site LinuxQuestions.org - where Linux users come for help - site profile 
Forum:  Linux - General  Linux - General - forum profile
Thread:  Show this thread (9 posts) More from Awk script to select range from file  Thread Thread info: Awk script to select range from file Size: 894 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Awk script to select range from file :: Linux - General :: LinuxQuestions.org - where Linux users come for he..."
Programming
Started 22 hours, 9 minutes ago (2009-11-27 08:46:00)  by mukherjee_debajyoti
Hi I have two files file_1 and file_2. The contents of the two files are as shown below : file_1 ------- Name : Gender : Age : Designation : file_2 -------- Name :
Source: LinuxQuestions.org - where Linux users come for he... More from this site LinuxQuestions.org - where Linux users come for help - site profile 
Forum:  Programming  Programming - forum profile
Thread:  Show this thread (2 posts) More from merging content of two files using sed or awk  Thread Thread info: merging content of two files using sed or awk Size: 774 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "merging content of two files using sed or awk :: Programming :: LinuxQuestions.org - where Linux users come for he..."
High Stakes MTT
Started 4 days, 15 hours ago (2009-11-23 15:25:00)  by FatsoFat6969
Ok so I'm posting this hand for a friend... 14 ppl left hero is 2nd in chips 3bettor is cl.. Hero is CanofCorn22 who has been opening every pot.. Villain has flatted hero twice and 3b him 2.5x once previously (which hero flatted... which could contribute to the 3b sizing)... Hero has not 4b at this tbl... Hand Converter not working for some reason... Full Tilt Poker Game #...
Source: Two Plus Two Poker Forum More from this site Two Plus Two Poker Forum - site profile 
Forum:  High Stakes MTT  High Stakes MTT - forum profile
Thread:  Show this thread (19 posts) More from Deep in 163 150k 1010 vs awk 3b  Thread Thread info: Deep in 163 150k 1010 vs awk 3b Size: 1,647 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Deep in 163 150k 1010 vs awk 3b :: High Stakes MTT :: Two Plus Two Poker Forum"