Tagged Questions

gawk (short for GNU awk) is a free implementation of awk.

learn more… | top users | synonyms

11
votes
5answers
7k views

Using awk to print all columns from the nth to the last

right now I have this line, and it worked until I had whitespace in the second field. svn status | grep '\!' | gawk '{print $2;}' > removedProjs is there a way to have awk print everything in $2 ...
8
votes
2answers
4k views

print second last column/field in AWK

I want to print the second last column or field in awk. the number of fields is variable. I know that I should be able to use $NF but not sure how it can be used. And this does not seem to work awk ...
4
votes
5answers
856 views

Can awk skip files which do not exist, race-free?

Is there a way to make awk (gawk) ignore or skip missing files? That is, files passed on the command line that no longer exist in the file system (e.g. rapidly appearing/disappearing files under ...
3
votes
3answers
70 views

Gawk print largest value from each column

I am writing a awk script that takes some columns of input in a text file and print out the largest value in each column Input: $cat numbers 10 20 30.3 40.5 20 30 ...
3
votes
3answers
89 views

Capture caret (^) with an awk regex

I have output with this format: /ignore-this/^/../I/want/this@ignore-this I am trying to use an awk regex to capture the following: ../I/want/this This wouldn't be particularly hard except that ...
3
votes
2answers
62 views

A Perl or Gawk script that returns a Keyword, the word before, and the word after?

I need a simple script to run in Windows that searches large xml files for a keyword, then returns the word before it, the keyword, and the word after. For example: "How can I extract keywords in ...
3
votes
2answers
442 views

matching a specific substring with regular expressions using awk

I'm dealing with a specific filenames, and need to extract information from them. The structure of the filename is similar to: "20100613_M4_28007834.005_F_RANDOMSTR.raw.gz" with RANDOMSTR a string ...
3
votes
3answers
905 views

gawk / awk: piping date to getline *sometimes* won't work

I'm attempting to convert dates from one format to another: From e.g. "October 29, 2005" to 2005-10-29. I have a list of 625 dates. I use Awk. The conversion works -- most of the time. Hovewer, ...
3
votes
2answers
2k 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 ...
3
votes
7answers
9k views

parse csv file using gawk

How do you parse a csv file using gawk? Simply setting FS="," is not enough, as a quoted field with a comma inside will be treated as multiple fields. Example using FS="," which does not work: file ...
3
votes
1answer
3k views

AWK: redirecting script output from script to another file with dynamic name

I know I can redirect awk's print output to another file from within a script, like this: awk '{print $0 >> "anotherfile" }' 2procfile (I know that's dummy example, but it's just an ...
2
votes
3answers
67 views

format string constant on several lines for readability

For learning purposes I am implementing a little regexp matcher for telephone numbers. My goal is readability, not the shortest possible gawk program: # should match #1234567890 #123-456-7890 ...
2
votes
2answers
300 views

Awk match() - multiple per line

I'm using the match() function in gawk to grab links out of an HTML file.. the regular expression is something like this: match($0, /(<a href=\")([^\"]+)/, arr) I don't seem to be able to use ...
2
votes
2answers
254 views

casting to int in awk

I'm looking for a method to cast a string to an int in awk. I have the following which appears to be doing a string comparison (note: field $5 is a percentage in one of two formats; 80% or 9.0%) ...
2
votes
1answer
127 views

Enable re-interval in gawk script

I create executable scripts for gawk by using the following #!: #!/usr/bin/gawk -f However if I want to enable interval regular expressions I cannot seem to add --re-interval or -W re-interval in ...
2
votes
2answers
164 views

AWK program to find the average rainfall of three states

I want to find the average rainfall of any three states say CA, TX and AX for a particular month from Jan to Dec . Given input file delimited by TAB SPACES and has the format city name, the state , ...
2
votes
7answers
2k 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 ...
1
vote
2answers
46 views

awk, a field doesn't match but it should match

I have a file structured as record list, where field separator is \t. I want to extract only records where the second field is a number from 1 to 9, but my awk script doesn't work. The awk script is ...
1
vote
3answers
89 views

Printing long integers in awk

I have a pipe delimited feed file which has several fields. Since I only need a few, I thought of using awk to capture them for my testing purposes. However, I noticed that printf changes the value if ...
1
vote
2answers
48 views

AWK user-defined function - a new syntax?

When looking for a quick way of right trimming a text string, I found the following wiki page: Wiki trimming page In the chapter about AWK it gives 2 sets of examples: ltrim(v) = gsub(/^[ \t]+/, ...
1
vote
1answer
17 views

How to skip records that turn on/off the range pattern?

gawk '/<Lexer>/,/<\/Lexer>/' file this works but it prints the first and last records, which I'd like to omit. How to do so? It says: "The record that turns on the range pattern and the ...
1
vote
2answers
76 views

Can Field Separator in Awk encompass multiple characters?

Can I use a field separator consisting of multiple characters? Like I want to separate words which contain quotes and commas between them viz. "School","College","City" so here i want to set my FS ...
1
vote
4answers
95 views

Delete lines from file

I have a question similar to this one: Delete lines from file with SED or AWK how can I delete rows that start with 3 and 5 and everything in between in this file: ssadfsadfsdf asdfsadf asdfsadf ...
1
vote
3answers
125 views

How to calculate exact median of a sorted array without holding the whole array and with constant space?

I need to read sorted array from input to awk/gawk and get median. I don't want to store the whole array and am trying to get constant space for the calculation. Are you aware of any algorithm doing ...
1
vote
1answer
62 views

Awk: How to cut similar part of 2 fields and then get the difference of remaining part?

Let say I have 2 fields displaying epoch time in microseconds: 1318044415123456,1318044415990056 What I wanted to do is: Cut the common part from both fields: "1318044415" Get the difference of ...
1
vote
1answer
152 views

How to print awk's results with different colors for different fields?

This file has 3 fields. I wanted e.g. the first 2 fields in green, and the third in white (NB : black background), so I tried : awk '{print "\033[0;32m"$1"\033[0m", "\033[0;32m"$2"\033[0m", ...
1
vote
2answers
34 views

why isn't this awk script behaving as expected?

I have the following test script /^[^a-zA-Z0-9]/ { DATEd[$3] = $1 } END { print " \"data\": [" for (i = 0 ; i <= 5; i ++ ) { { print " ...
1
vote
3answers
148 views

Print Field 'N' to End of Line

I would like to have help or direction on a problem I have in awk. I have a tab-delimited file with more than 5 fields. I want to output the fields excluding the first 5 fields. Could you please ...
1
vote
3answers
72 views

AWK Script - What does this script do?

I need to duplicate processing of this AWK script but cannot figure out what it is doing. Can anyone please advise what the basic function of this script is? It takes an input file, and creates an ...
1
vote
2answers
56 views

regex doubt in gawk

my csv data file is like this title,name,gender MRS.,MADHU,Female MRS.,RAJ KUMAR,male MR.,N,Male MRS.,SHASHI,Female MRS.,ALKA,Female now as you can see i wanna avoid all data like line 2 and 3 (i.e ...
1
vote
2answers
158 views

search through a file in the style of bash reverse-search-history

I'm trying to write a function which will search through a file in the same manner that reverse-search-history works. i.e. user starts typing in, prompt is updated with 1st match, hitting a special ...
1
vote
3answers
188 views

GAWK Script - Print filename in BEGIN section

I am writing a gawk script that begins #!/bin/gawk -f BEGIN { print FILENAME } I am calling the file via ./script file1.html but the script just returns nothing. Any ideas?
1
vote
2answers
442 views

Sort associative array with AWK

Here's my array (gawk script) : myArray["peter"] = 32 myArray["bob"] = 5 myArray["john"] = 463 myArray["jack"] = 11 After sort, I need the following result : bob 5 jack 11 peter 32 john ...
1
vote
2answers
128 views

awk and extracting specific field more than once

I've got many files with variables in them like {$var1} some text {$var2} some other text I'd like to give them to awk so that awk extracts them and gives a result like this: file_name.htm - 8 : ...
1
vote
3answers
205 views

Adding a delimiter after each file processed within awk

I have multiple files where I am extracting text between two delimiters (START and END non-inclusive). After I process each file I want to output a delimiter indicating the file was processed, say ...
1
vote
1answer
224 views

awk program to calcluate the variance of wind speed

I have the below file formatted in the fashion shown below - DATA THROUGH 2001 YRS JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC ANN BIRMINGHAM AL 58 8.1 8.7 9.0 8.2 6.8 6.0 5.7 5.4 6.3 6.2 ...
1
vote
2answers
227 views

variable in awk regular expression

How to pass a variable to regular expression like this? match($0, /([^ ]+) (GET|POST|PUT|DELETE) ([^?]+)[^ ]+ HTTP\/[^ ]+ \"(VAR)\" ([^ ]+) ([^ ]+) ([^ ]+)/, matches)
1
vote
1answer
61 views

real number on gawk

i am using gawk on a windows computer with cygwin what i am trying to do is find min and max from three columns two are lat and lon and the third column is the value this is the code: echo off ...
1
vote
1answer
225 views

How to convert time format from “2010-10-08 00:00:01” to “1286467201” in awk

In awk, Is there a way to convert the time format from "2010-10-08 00:00:01" to 1286467201 as using the command "date" $ date +%s -d '2010-10-08 00:00:01' 1286467201
1
vote
1answer
351 views

awk return parent HTML tag value if its child tag content is matched - possible?

I've been searching for solution to this problem for quite some time, but I can't figure it out on my own. So I have bunch of HTML blocks of code, and I want to search for specific string that is ...
1
vote
1answer
72 views

TCP Networking in Gawk Works for Some Addresses but not Others

I've been fiddling with TCP/IP networking in Gawk and am having a hard time figuring out why it behaves well with some sites but not for others. I've even tried using HTTP Live Headers in Windows to ...
1
vote
3answers
220 views

Substitute Array Elements into Regular Expression Statements / Variable Names

Been wondering if this is doable in AWK for some time but always worked around it in the past. Below I initialize an array with 3 months of the year... for readability I ommited the other 9 months. ...
1
vote
3answers
162 views

Shell variable interpreted wrongly in awk

In following code I am trying to pass shell varibale to awk. But when I try to run it as a.sh foo_bar the output printed is "foo is not declared" and when I run it as a.sh bar_bar the output printed ...
1
vote
3answers
105 views

awk replacing text but not for the last line

i tried the awk liner below(on windows command-prompt):not working properly gawk -v var="hot" "{ if(!NR){gsub(/cool/,var,$0) ;print} else{print}}" awk_test input file is below this is a cool jack ...
1
vote
3answers
2k views

How to use “:” as awk field separator?

Given following command: echo "1: " | awk '/1/ -F ":" {print $1}' why does awk output: 1:
1
vote
4answers
788 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 ...
1
vote
6answers
910 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 ...
1
vote
8answers
240 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 ...
1
vote
4answers
324 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 ...
1
vote
5answers
531 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.

1 2