aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/awk
AgeCommit message (Collapse)AuthorFilesLines
2020-01-10Trivial changes: whitespace and modes.Dan Cross10-31/+21
Remote whitespace at the ends of lines. Remove blank lines from the ends of files. Change modes on source files so that they are not executable. Signed-off-by: Dan Cross <cross@gajendra.net>
2019-10-29awk: split record into runes for empty FS (#292)Fazlul Shahriar1-4/+9
awk was splitting records into bytes instead of runes for empty FS. For example, this was printing only the first byte of the utf-8 encoding of é: echo é | awk 'BEGIN{FS=""}{print $1}' The change just copies how the `split` function handles runes. Originally reported by kris on twitter: https://twitter.com/p9luv/status/1180436083433201665
2017-09-01all: update site from swtch.com to 9fans.github.ioRuss Cox1-1/+1
2012-10-21fix clang warnings reported by Tuncer AyazRuss Cox1-4/+1
R=rsc http://codereview.appspot.com/6744054
2009-08-11awk: sync with Plan 9Michael Teichgräber1-12/+33
http://codereview.appspot.com/104087
2009-05-31cmd: getline now a dirty word (James Toy)Russ Cox1-0/+2
2008-12-06awk: delete y.outputRuss Cox1-9032/+0
2008-12-06awk/mkfile: tabifyRuss Cox1-3/+3
2008-11-03awk: import from sourcesJeff Sickel14-0/+14513