summaryrefslogtreecommitdiff
path: root/helpers/genbin.awk
blob: 12b280e58d5f5af14b8ab6fc90c79fc17924a707 (plain)
1
2
3
4
5
{
	for (i = 1; i <= NF; i++) {
		printf("%c", $i)
	}
}