1
vote
7answers
121 views
how to use sed, awk, or gawk to print only what is matched?
I see lots of examples and man pages on how to do things like search-and-replace using sed, awk, or gawk.
But in my case, I have a regular expression that I want to run against a text file to extract …
0
votes
2answers
29 views
Formula in gawk
I have a problem that I’m trying to work out in gawk. This should be so simple, but my attempts ended up with a divide by zero error.
What I trying to accomplish is as follows –
maxlines = 22 (fixed …
1
vote
2answers
82 views
GNU awk: accessing captured groups in replacement text
This seems like it should be dirt simple, but the awk gensub/gsub/sub behavior has always been unclear to me, and now I just can't get it to do what the documentation says it should do (and what …
0
votes
1answer
132 views
Format of File using Awk in PowerShell
All I did was ls to a file, then ran a simple awk print. I'm new to both PowerShell and Awk, but the output is obsviously not what's expected. Can anyone explain this? Does it have something to do …
1
vote
3answers
72 views
How could I print an array slice in awk?
In a file I am reformatting, I would like to put the last column as the first and have the rest of the columns stay the same. I could do this easily in python, but thought I'd learn some awk this …
0
votes
4answers
75 views
using gawk in a shell script
I want to do something of the sort:
for i in 1 2 3
do
gawk '{if ($i==$2) {print $0;}}' filename
done
is this possible?
thanks
1
vote
6answers
220 views
Using Awk to process a file where each record has different fixed-width fields.
I have some data files from a legacy system that I would like to process using Awk. Each file consists of a list of records. There are several different record types and each record type has a …
0
votes
2answers
93 views
using gawk in a shell script
Hi I want to use gawk in a for loop. Something like this:
for i in gawk {print $1} | tr '\n' ' '
do something using $i
this isn't working of course. Ideas?
1
vote
8answers
148 views
A regex for a class definition in java
The problem is as follows:
There is a massive codebase in Java (hundreds of files in tens of packages) where we need the ability to add and remove the keyword strictfp in each class definition. I am …
0
votes
2answers
55 views
Scanning all elements of an array in GAWK returns numbers instead of values
Given the following function:
function process_pipes(text)
{
split(text,recs,"|");
for (field in recs){
printf ("|%s|\n", field)
}
}
If the input is: 0987654321|57300|ERROR …
0
votes
1answer
53 views
fatal: function name previously defined
For the listing below, I get an error:
fatal: function name `myprint' previously defined
$3 > 0 { myprint ($3) }
function myprint(num)
{
printf "%6.3g\n", num
}
0
votes
4answers
175 views
Anyone know how to make a self-contained Awk/Gawk program on Windows
I'm using an awk script to do some reasonably heavy parsing that could be useful to repeat in the future but I'm not sure if my unix-unfriendly co-workers will be willing to install awk/gawk in order …
0
votes
2answers
200 views
Printing thousand seperated floats with GAWK
I must process some huge file with gawk. My main problem is that I have to print some floats using thousand separators. E.g.: 10000 should appear as 10.000 and 10000,01 as 10.000,01 in the output.
I …
1
vote
4answers
220 views
How to perform calculation over a log file
I have a that looks like this:
I, [2009-03-04T15:03:25.502546 #17925] INFO -- : [8541, 931, 0, 0]
I, [2009-03-04T15:03:26.094855 #17925] INFO -- : [8545, 6678, 0, 0]
I, [2009-03-04T15:03:26.353079 …
0
votes
5answers
136 views
Best reference / crib sheet for AWK
In a series of similar questions, what is the best AWK reference you've ever seen?
If there isn't really one (I've yet to find the grail), perhaps we could compile one in a separate question.
