Search the web
Sign In
New User? Sign Up
geeksthatgawk · for GNU Awk questions & discussions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 12 - 42 of 221   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12
I have an input file and the field delimeter is "|" including the quotes. How can I tell awk to user this exact delimeter....I'm tring awk -F '\"|\"' but it...
francis_carino
Offline Send Email
Jul 17, 2001
5:34 pm
13
Try it like this:<br><br>\""|"\"<br><br>... the preceeding slash (\) tells awk that it's a literal character....
Nitallica
Offline Send Email
Jul 22, 2001
1:24 am
14
1) O'reilly's "Sed and Awk" - <a href=http://www.oreilly.com/ target=new>http://www.oreilly.com/</a><br>2) _The AWK Programming Language_ (ISBN 0-201-07981-X)...
Nitallica
Offline Send Email
Jul 22, 2001
1:24 am
15
Multilingual Batch Programs - AWK Batch Scripts Archive:<br><br><a href=http://www.maem.umr.edu/~batch/multilingual.html...
Nitallica
Offline Send Email
Jul 22, 2001
1:26 am
16
(Links section won't allow FTP URLs, so I'm posting it here)<br><br>ftp://ftp.armory.com./pub/scobins/gawk...
Nitallica
Offline Send Email
Jul 22, 2001
1:28 am
17
<a href=http://awka.sourceforge.net/ target=new>http://awka.sourceforge.net/</a> <br><br>You can embed an AWK program inside C or C++, or conversely embed C...
Nitallica
Offline Send Email
Jul 22, 2001
1:29 am
18
We're talking about the "classic" MacOS(pre-OSX). You'll need to use apple's mpw environment which you need to get from apple if you don't already have it. ...
Nitallica
Offline Send Email
Jul 22, 2001
1:31 am
19
SCAWK is a awk version in the scheme programming language, you can go to<br><a href=http://charles.lehalle.free.fr/tools.html...
Nitallica
Offline Send Email
Jul 22, 2001
1:32 am
20
<a href=http://www.lawebdelprogramador.com/ target=new>http://www.lawebdelprogramador.com/</a> - for info on New AWK (NAWK) in Spanish...
Nitallica
Offline Send Email
Jul 22, 2001
1:33 am
21
Awk code formatter<br><a href=http://www.math.utah.edu:8080/pub/awkpretty/ target=new>http://www.math.utah.edu:8080/pub/awkpretty/</a>...
Nitallica
Offline Send Email
Jul 22, 2001
1:33 am
22
Incidentally, wouldn't it be easier to write that into a quick awk batch file?...
Nitallica
Offline Send Email
Jul 22, 2001
1:35 am
23
You might want to try here, it's commercial tho:<br><br><br><a href=http://www.teleport.com/~thompson/main.html...
Nitallica
Offline Send Email
Jul 22, 2001
2:15 am
24
Some of you might find this interesting....<br><br><a href=http://www.angelfire.com/grrl/geeksthatgawk/awk.txt...
Nitallica
Offline Send Email
Oct 18, 2001
3:14 pm
25
GAWKDLL - GNU AWK as a 16-bit DLL<br><br><a href=http://www.muc.de/~walkerj/GAWKDLL/gawkdll.htm...
Nitallica
Offline Send Email
Oct 18, 2001
3:21 pm
26
I have started to imbed gawk in an MS Window and am wondering whether it has already been done....
mobjckskpr
Offline Send Email
Jan 13, 2002
1:54 pm
27
Hi,<br><br>If I'm not mistaken, this has been done already. :)...
Nitallica
Offline Send Email
Jan 15, 2002
7:03 pm
28
Hi everyone, I'm actually using nawk, not gawk...but I saw your previous posts on multiple characters as a field delimiter and i was wondering if anyone knew...
c_zutroy
Offline Send Email
Mar 15, 2002
5:01 pm
29
Is there a way to determine when you're done with a file? I have a large list of files and want to process each one individually. I want to know when to close...
Alicia Chin
c_zutroy
Offline Send Email
Mar 20, 2002
5:52 pm
30
Health! I'm working on a bash script and it contains a small awk script, I need set values on a shell variable inside the gawk script. Is this possible? I've...
pac0rro
Offline
Mar 26, 2002
11:29 am
31
... From: "pac0rro" <no_reply@yahoogroups.com> To: <geeksthatgawk@yahoogroups.com> Sent: Tuesday, March 26, 2002 11:29 AM Subject: [Geeks that Gawk] Changing...
Peter S Tillier
peter_tillier
Offline Send Email
Mar 27, 2002
7:05 am
33
Hi, I'm new to awk and I was wondering if it's normal that gawk memory goes over 100mb while executing. I'm processing a 4k file! On windows 2000. Thanks, Greg...
Miawww
Offline Send Email
Apr 6, 2002
11:51 pm
34
... From: "Miawww" <miawww@...> To: <geeksthatgawk@yahoogroups.com> Sent: Sunday, April 07, 2002 12:51 AM Subject: [Geeks that Gawk] gawk memory usage on...
Peter S Tillier
peter_tillier
Offline Send Email
Apr 7, 2002
7:45 am
35
Nothing really complex... How to know how much memory used : Task manager Here's a sreenshot of my task manager : ...
Miawww
Offline Send Email
Apr 7, 2002
5:22 pm
36
Actually, what's bring the memory so high is the following loop: for (j = -(60*60); j < i; j++) { printf "%d\n",j totalm[j] += totalm[j-1] +...
Miawww
Offline Send Email
Apr 7, 2002
5:29 pm
37
... From: "Miawww" <miawww@...> To: <geeksthatgawk@yahoogroups.com> Sent: Sunday, April 07, 2002 6:29 PM Subject: Re: [Geeks that Gawk] gawk memory usage...
Peter S Tillier
peter_tillier
Offline Send Email
Apr 7, 2002
5:58 pm
38
Greg, The format of the test data file wrapped in the posting - it's better to send as an attachment rather than as inline. If you'd like me to follow it up...
Peter S Tillier
peter_tillier
Offline Send Email
Apr 8, 2002
4:30 am
39
What's your email? peter_tillier@... doesn't work. Greg...
Miawww
Offline Send Email
Apr 8, 2002
6:57 am
40
Greg, It's peter_tillier@... Peter S Tillier ----- Original Message ----- From: "Miawww" <miawww@...> To: <geeksthatgawk@yahoogroups.com>...
Peter S Tillier
peter_tillier
Offline Send Email
Apr 8, 2002
7:24 pm
41
Greg, A problem with gawk has recently been posted in comp.lang.awk. This was to do with a possible memory leak. That could be the cause of your problem...
Peter S Tillier
peter_tillier
Offline Send Email
Apr 10, 2002
6:21 am
42
... script, I ... this ... invoking shell ... source ... but that ... Hi pac0rro, You can do this in shell (sh) thus: var=`gawk '{ if ($1 ~ /BLAH/) print $1 ;...
flogr
Offline
May 11, 2002
5:16 pm
Messages 12 - 42 of 221   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help