projects
/
wiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f41740f
)
removed extra space
author
Philip Durbin
<philipdurbin@gmail.com>
Tue, 3 Jul 2012 18:46:28 +0000
(14:46 -0400)
committer
Philip Durbin
<philipdurbin@gmail.com>
Tue, 3 Jul 2012 18:46:28 +0000
(14:46 -0400)
awk.mdwn
patch
|
blob
|
history
diff --git
a/awk.mdwn
b/awk.mdwn
index ab0dea20a8dee704bcc0b8e5c7a9fd8a15b660d3..1a1d4920373ab0ae1efdcb00c2fc0955009f3b0d 100644
(file)
--- a/
awk.mdwn
+++ b/
awk.mdwn
@@
-1,4
+1,4
@@
reordering and reformatting tab separated output:
- [pdurbin@beamish ~]$ echo -e "foo\tbar\tbaz" | awk -F'[\t]'
'{printf("%s %s (%s)\n",$2, $3, $1)}'
+ [pdurbin@beamish ~]$ echo -e "foo\tbar\tbaz" | awk -F'[\t]' '{printf("%s %s (%s)\n",$2, $3, $1)}'
bar baz (foo)