diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-29 09:43:01 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-29 09:43:01 +0300 |
commit | ff9ab7fc13c4fb96477fa07d681bad2c24b78ade (patch) | |
tree | 0a0fc968ae304059215d408db8dcee015899dc9c /helpers/genbin.awk | |
parent | 6399f5d208e8952f58e94502ab827cdae10b3787 (diff) | |
download | egawk-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.awk | 5 |
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) + } +} |