index
:
egawk
master
Enhanced GNU Awk
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
z2.awk
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'z2.awk')
-rw-r--r--
z2.awk
8
1 files changed, 8 insertions, 0 deletions
diff --git a/z2.awk b/z2.awk
new file mode 100644
index 00000000..0a597b22
--- /dev/null
+++ b/
z2.awk
@@ -0,0 +1,8 @@
+BEGIN {
+ f = "foo"
+ p = @/o/
+// gsub(p, "q", f)
+ fun = "gsub"
+ @fun(p, "q", f)
+ print f
+}