This is an old revision of the document!


Find Longest Line in a File

awk ' { if ( length > x ) { x = length } }END{ print x }' file.txt

Perform Floating Point Calculations

awk can be used for complex calculations, for example:

awk 'BEGIN {printf "%.3f\n", sin(30 * atan2(0, -1)/180)}'

will calculate $\sin(30^\circ)=sin(30rad * \frac{\pi}{180})$ and return:

0.500

Since awk does not have a constant for $\pi$, we use atan2(0, -1) instead.

Delimiter-Style

Suppose you have a file input containing data separated by delimiters such as:

variable = value

or:

variable = value

The following command can be used to obtain value:

awk -F"[ \t]*[=][ \t]*" '{ print $2 }' input

Remove Duplicate Entries in File Without Sorting

To remove all duplicates from file.txt without sorting, issue:

awk '!x[$0]++' file.txt

Merge Lines by Two in File

Given a file with the contents:

Q: What is this?
A: This is a FAQ!

and you would like to achieve:

Q: What is this? A: This is a FAQ!

then the following awk one liner:

awk 'NR%2{printf "%s ",$0;next;}1' yourFile

will merge all the lines in a file by two.


fuss/awk.1514201581.txt.gz ยท Last modified: 2017/12/25 11:33 by office

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.