aboutsummaryrefslogtreecommitdiffstats
path: root/helpers/genbin.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-04-29 09:58:45 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-04-29 09:58:45 +0300
commitf586cd49506935eb48a6afeaff6988087f947ed1 (patch)
tree13166b8ec1cbcf45b28607670dcb1b03c9cb1d38 /helpers/genbin.awk
parentb4ef28f58688cf3c3a5878c595b6582144ee2cf1 (diff)
parentff9ab7fc13c4fb96477fa07d681bad2c24b78ade (diff)
downloadegawk-f586cd49506935eb48a6afeaff6988087f947ed1.tar.gz
egawk-f586cd49506935eb48a6afeaff6988087f947ed1.tar.bz2
egawk-f586cd49506935eb48a6afeaff6988087f947ed1.zip
Merge branch 'gawk-4.1-stable'
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)
+ }
+}