Tagged Questions
Awk is a pattern matching language that can be used both in shell scripting and for standalone programs.
47
votes
5answers
14k views
What are the differences between Perl, Python, AWK and sed?
just want to know what are the main differences among them? and the power of each language (where it's better to use it).
Edit: it's not "vs." like topic, just information.
30
votes
16answers
3k views
Is there still any reason to learn AWK?
I am constantly learning new tools, even old fashioned ones, because I like to use the right solution for the problem.
Nevertheless, I wonder if there is still any reason to learn some of them. AWK ...
22
votes
8answers
15k views
Awk/Sed: How to do a recursive find/replace of a string?
How to I find and replace every occurrence of:
subdomainA.example.com
with
subdomainB.example.com
in every text file under the /home/www/ directory tree (recursive find/replace).
17
votes
9answers
8k views
Is there a Unix utility to prepend timestamps to lines of text?
I ended up writing a quick little script for this in Python, but I was wondering if there was a utility you could feed text into which would prepend each line with some text -- in my specific case, a ...
16
votes
3answers
3k views
What is the difference between sed and awk?
What is the difference between awk
and sed ?
What kind of application are best use
cases for sed and awk tools ?
15
votes
10answers
2k views
How can I quickly sum all numbers in a file?
I have a file which contains several thousand numbers, each on it's own line:
34
42
11
6
2
99
...
I'm looking to write a script which will print the sum of all numbers in the file. I've got a ...
14
votes
14answers
12k views
Parsing json with sed and awk
I'm trying to parse json returned from a curl request, like sp:
curl 'http://twitter.com/users/username.json' | sed -e 's/[{}]/''/g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) ...
13
votes
6answers
494 views
Python or awk/sed for cleaning data [closed]
I use R for data analysis and am very happy with it. Cleaning data could be a bit easier, however. I am thinking about learning another language suited to this task. Specifically, I am looking for a ...
13
votes
3answers
5k views
Using awk to remove the Byte-order mark
has anyone an idea how an awk script (presumably a one-liner) for removing a BOM would look like?
Specification:
print every line after the first (NR > 1)
for the first line: If it starts with ...
12
votes
6answers
5k views
How can I shuffle the lines of a text file in Unix command line?
I searched SO for a similar Q/A to no avail. I want to shuffle the lines of a text file randomly and create a new file. The file may have several thousands of lines.
How can I do that with cat, awk, ...
12
votes
1answer
2k views
How do I view all ignored patterns set with svn:ignore recursively in an svn repository?
I see it is possible to view a list of properties set on every directory within an SVN repository using proplist and the -R flag (recursive) and -v flag (verbose):
svn proplist -Rv
This shows me ...
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 ...
11
votes
3answers
5k views
awk: access captured group from line pattern
If I have an awk command
pattern { ... }
and pattern uses a capturing group, how can I access the string so captured in the block?
11
votes
6answers
5k views
Randomly Pick Lines From a File Without Slurping It With Unix
I have a 10^7 lines file, in which I want to choose 1/100 of lines randomly
from the file. This is the AWK code I have, but it slurps all the file content
before hand. My PC memory cannot handle such ...
10
votes
7answers
261 views
How to randomly delete a number of lines from a big file?
I have a big text file of 13 GB with 158,609,739 lines and I want to randomly select 155,000,000 lines.
I have tried to scramble the file and then cut the 155000000 first lines, but it's seem that my ...
9
votes
4answers
259 views
How do I grep for entire, possibly wrapped, lines of code?
When searching code for strings, I constantly run into the problem that I get meaningless, context-less results. For example, if a function call is split across 3 lines, and I search for the name of ...
9
votes
10answers
4k views
Batch script to replace PHP short open tags with <?php
I have a large collection of php files written over the years and I need to properly replace all the short open tags into proper explicit open tags.
change "<?" into "<?php"
I think this ...
8
votes
4answers
83 views
Delete all lines between two patterns (exclusive of the pattern) using sed or awk
I have a somewhat large output text file where I need to delete all lines between two patterns but retain the pattern match.
The files look vaguely like the following output.
TEST #1
...
8
votes
11answers
444 views
Automatically sum numeric columns and print total
Given the output of git ... --stat:
3 files changed, 72 insertions(+), 21 deletions(-)
3 files changed, 27 insertions(+), 4 deletions(-)
4 files changed, 164 insertions(+), 0 deletions(-)
9 files ...
8
votes
6answers
754 views
How to separate words in a “sentence” with spaces?
Background
Looking to automate creating Domains in JasperServer. Domains are a "view" of data for creating ad hoc reports. The names of the columns must be presented to the user in a human readable ...
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 ...
8
votes
5answers
7k views
Linux command line global search and replace
I'm trying to search and replace a string in all files matched by grep on a linux machine. I've got some pieces of what I want to do, but I'm unsure how best to string them all together.
grep -n ...
7
votes
5answers
229 views
How do I add a line of text to the middle of a file using bash?
I'm trying to add a line of text to the middle of a text file in a bash script. Specifically I'm trying add a nameserver to my /etc/resolv.conf file. As it stands, resolv.conf looks like this:
# ...
7
votes
5answers
665 views
Awk conditional sum from a CSV file
I have a CSV file from which I would like to extract some pieces of information: for each distinct value in one colum, I would like to compute the sum of the corresponding values in another column. ...
7
votes
4answers
339 views
Other solutions/languages that are superior to the TCL-based Expect?
I am amazed by how Expect (TCL) can automate a lot of things I normally could not do.
I thought I could dig deeper into Expect by reading a book, but before I do that I want to ask if there are other ...
7
votes
6answers
2k views
Find and kill a process in one line using bash and regex
I often need to kill a process during programming.
The way I do it now is:
[~]$ ps aux | grep 'python csp_build.py'
user 5124 1.0 0.3 214588 13852 pts/4 Sl+ 11:19 0:00 python csp_build.py
...
7
votes
3answers
415 views
Sed to remove underscores and promote character
I am trying to migrate some code from an old naming scheme to the new one the old naming scheme is:
int some_var_name;
New one is
int someVarName_:
So what I would ilke is some form of sed / ...
7
votes
4answers
318 views
What can I do using awk that I cannot do in Perl?
I had read somewhere about one specific feature that is present in awk but not in Perl. I have failed in locating it again.
I would appreciate it if anyone here can point it out.
This might be a ...
7
votes
5answers
4k views
Easiest way to extract the urls from an html page using sed or awk only
I want to extract the URL from within the anchor tags of an html file.
This needs to be done in BASH using SED/AWK. No perl please.
What is the easiest way to do this?
7
votes
6answers
798 views
sed optimization question (large file modification based on smaller dataset)
I do have to deal with very large plain text files (over 10 gigabytes, yeah I know it depends what we should call large), with very long lines.
My most recent task involves some line editing based ...
7
votes
6answers
5k views
Shell: insert a blank/new line two lines above pattern
I have a text file and it requires some formatting.
I know that if you want to add a blank line above every line that matches your regexp, you can use:
sed '/regexp/{x;p;x;}'
But I'd like to add a ...
6
votes
4answers
94 views
Read a large file and output sections matching multiple parameters
I rarely have to deal with scripting, so I'm up against a lack of knowledge for this problem.
I have a file >500mb in text, which is nicely sectioned, but I know there are 5 to 10 "bad" sections ...
6
votes
1answer
102 views
Extrapolation — awk based
I need help in the following: I have a data file (columns separated by "\t" tabular) like this data.dat
# y1 y2 y3 y4
17.1685 21.6875 20.2393 26.3158
These are x values of 4 ...
6
votes
7answers
151 views
SED - removing string followed by LineFeed (\n)
I can't find a suitable sed expression to remove a word followed by a line return (\n)
Test file is:
line1\n
line2\n
line3mark\n
line4\n
line5\n
and i want to remove all occurances of mark\n ...
6
votes
2answers
150 views
bash: how do I concatenate the output of two commands so that I can pipe them to a third?
$ hg status
and
$ hg status --ignored
give very similar outputs. I'd like to concatenate them so I can feed them to awk, as if there were an hg status --all (or svn's svn status --no-ignore)
...
6
votes
4answers
166 views
How to switch/rotate every two lines with sed/awk?
I have been doing this by hand and I just can't do it anymore-- I have thousands of lines and I think this is a job for sed or awk.
Essentially, we have a file like this:
A sentence X
A matching ...
6
votes
2answers
632 views
Getting ID of an instance newly launched with ec2-api-tools
I'm launching an EC2 instance, by invoking ec2-run-instances from simple a bash script, and want to perform further operations on that instance (e.g. associate elastic IP), for which I need the ...
6
votes
11answers
5k views
Converting FASTQ to FASTA with SED/AWK
I have a data in that always comes in block of four
in the following format (called FASTQ):
@SRR018006.2016 GA2:6:1:20:650 length=36
NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGN
+SRR018006.2016 ...
5
votes
4answers
59 views
Sorting the lines in a CSV according to those containing numbers and those without
I have a 4-column CSV file. I want to sort the lines, such that, the lines containing any number somewhere within the third column are pushed to the end of the document, lines without numbers in the ...
5
votes
2answers
140 views
Compare 2 Unix Files and Output Matching Lines to a New File?
I have 2 nix files. All of the data is on one single line in each file. Each value is separated by a null character. Some off the values in the data match.
How would I parse this data into a new file ...
5
votes
4answers
86 views
How to Add Column with Percentage
I would like to calculate percentage of value in each line out of all lines and add it as another column.
Input (delimiter is \t):
1 10
2 10
3 20
4 40
Desired output with added third ...
5
votes
1answer
148 views
What are some powerful tools for text manipulation and pre-processing in R?
I frequently use Hadley's package stringr to clean up messy ecological data (normalizing species names, poorly formatted labels etc). Recently I began learning sed and awk and am blown away by how ...
5
votes
7answers
208 views
Efficiently average the second column by intervals defined by the first column
There are two numeric columns in a data file. I need to calculate the average of the second column by intervals (such as 100) of the first column.
I can program this task in R, but my R code is ...
5
votes
4answers
240 views
print all but select fields in awk
I have a large file with hundreds of columns that I want to remove only the third and fourth columns from and print the rest to a file. My initial idea was to make an awk script like awk '{print $1, ...
5
votes
8answers
456 views
how to trim file - remove the columns with the same value
I would like your help on trimming a file by removing the columns with the same value.
# the file I have (tab-delimited, millions of columns)
jack 1 5 9
john 3 5 0
lisa 4 5 7
# the file I want ...
5
votes
2answers
353 views
Count occurrences after a string match with bash text utilities
I'm trying to reorganise my desktop with some cool conky config. Since I'm a very big fan of org-mode in Emacs, I'd like to pipe out the tasks from org file where I keep my daily tasks and display it ...
5
votes
2answers
182 views
stable sort in linux
I have a file
ksh$ cat test
b d
b c
a b
a a
I want to sort on first field but I want stable sort i.e. order of 2nd field should remain the same. I want output as:
a b
a a
b d
b c
If I try:
...
5
votes
3answers
356 views
How to append something at the end of a certain line of the text
I want to append something at the end of a certain line(have some given character).
For example, the text is:
Line1: I just want to make clear of the problem
Line2: Thanks to all who look into my ...
5
votes
2answers
107 views
Differences/merging two files
I have two lists of IP addresses. I need to merge them into three files, the intersection, those from list1 only and those from list2 only.
can I do this with awk/diff or any other simple unix ...
5
votes
3answers
723 views
Extract Lines when Column K is empty with AWK/Perl
I have data that looks like this:
foo 78 xxx
bar yyy
qux 99 zzz
xuq xyz
They are tab delimited.
How can I extract lines where column 2 is empty, yielding
bar yyy
xuq xyz
I tried this ...