projects
/
wiki.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
don't need []
[wiki.git]
/
awk.mdwn
1
reordering and reformatting tab separated output:
2
3
[pdurbin@beamish ~]$ echo -e "foo\tbar\tbaz" | awk -F'\t' '{printf("%s %s (%s)\n",$2, $3, $1)}'
4
bar baz (foo)
5
6
http://www.grymoire.com/Unix/Awk.html
7
8
http://www.pement.org/awk/awk1line.txt