Files missing from original commit
This commit is contained in:
parent
69314e946a
commit
d2983908ee
3 changed files with 25 additions and 1 deletions
12
src/sh/format-chars.awk
Normal file
12
src/sh/format-chars.awk
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/awk -f
|
||||
|
||||
# Hackery to format the data structure for the entries.
|
||||
|
||||
BEGIN {printf( "[[ "); COL=0;}
|
||||
{printf( "\"%s\" ", $1);
|
||||
COL++;
|
||||
if (COL == 12) {
|
||||
COL=0;
|
||||
printf(" ]\n[ ");
|
||||
}}
|
||||
END {print( " ]]");}
|
||||
Loading…
Add table
Add a link
Reference in a new issue