aboutsummaryrefslogtreecommitdiffstats
path: root/helpers/genbin.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-04-29 09:43:01 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-04-29 09:43:01 +0300
commitff9ab7fc13c4fb96477fa07d681bad2c24b78ade (patch)
tree0a0fc968ae304059215d408db8dcee015899dc9c /helpers/genbin.awk
parent6399f5d208e8952f58e94502ab827cdae10b3787 (diff)
downloadegawk-ff9ab7fc13c4fb96477fa07d681bad2c24b78ade.tar.gz
egawk-ff9ab7fc13c4fb96477fa07d681bad2c24b78ade.tar.bz2
egawk-ff9ab7fc13c4fb96477fa07d681bad2c24b78ade.zip
Make 4.1.2 release.
Diffstat (limited to 'helpers/genbin.awk')
-rw-r--r--helpers/genbin.awk5
1 files changed, 5 insertions, 0 deletions
diff --git a/helpers/genbin.awk b/helpers/genbin.awk
new file mode 100644
index 00000000..12b280e5
--- /dev/null
+++ b/helpers/genbin.awk
@@ -0,0 +1,5 @@
+{
+ for (i = 1; i <= NF; i++) {
+ printf("%c", $i)
+ }
+}