├── awk.cheat.sheet.doc ├── awk.cheat.sheet.pdf ├── awk.cheat.sheet.txt └── readme.txt /awk.cheat.sheet.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/awk-cheat-sheet/f0845c9c9493d74d72819e63e57fd7aa747258fc/awk.cheat.sheet.doc -------------------------------------------------------------------------------- /awk.cheat.sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/awk-cheat-sheet/f0845c9c9493d74d72819e63e57fd7aa747258fc/awk.cheat.sheet.pdf -------------------------------------------------------------------------------- /awk.cheat.sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/awk-cheat-sheet/f0845c9c9493d74d72819e63e57fd7aa747258fc/awk.cheat.sheet.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | This is the AWK cheat sheet. AWK is a fun language to know. It allows you to 2 | do various string processing tasks on Unix quickly. I created this cheat sheet 3 | when I was learning AWK some years ago. 4 | 5 | I explain a lot more about how and why I created it in my article "Awk, Nawk 6 | and GNU Awk Cheat Sheet". This article can be read here: 7 | 8 | http://www.catonmat.net/blog/awk-nawk-and-gawk-cheat-sheet/ 9 | 10 | ------------------------------------------------------------------------------ 11 | 12 | This cheat sheet was created by Peteris Krumins (peter@catonmat.net). 13 | His blog is at http://www.catonmat.net -- good coders code, great reuse. 14 | 15 | The cheat sheet is released under GNU Free Documentation License. 16 | 17 | ------------------------------------------------------------------------------ 18 | 19 | The Awk cheat sheet contains the following topics: 20 | 21 | * Predefined Awk variable summary for Awk, Nawk and Gawk. 22 | * Gnu Awk's command line summary. 23 | * I/O statements. 24 | * Numeric functions. 25 | * Bit manipulation functions. 26 | * I18N (internationalization) functions. 27 | * String functions, 28 | * Time functions. 29 | 30 | 31 | It is available in .pdf, .txt (ascii) and .doc (microsoft word) 32 | formats. The latest versions can always be found at: 33 | 34 | .txt: http://www.catonmat.net/download/awk.cheat.sheet.txt 35 | .pdf: http://www.catonmat.net/download/awk.cheat.sheet.pdf 36 | .doc: http://www.catonmat.net/download/awk.cheat.sheet.doc 37 | 38 | I'm sorry that I used Microsoft Word to create it, but I was not proficient in 39 | LaTeX back then. 40 | 41 | ------------------------------------------------------------------------------ 42 | 43 | Sincerely, 44 | Peteris Krumins 45 | http://www.catonmat.net 46 | 47 | --------------------------------------------------------------------------------