mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-01 08:47:24 -04:00
20 lines
374 B
Bash
Executable File
20 lines
374 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo
|
|
echo Generating entity table.
|
|
(
|
|
cat entities.lnx | grep '^[ ]*{"' | sort >tmp
|
|
N=`cat tmp | wc -l`
|
|
echo '/* Automatically generated by gen-ent */'
|
|
echo
|
|
echo 'struct entity { char *s; unicode_val_T c; } entities ['`expr $N + 1`'] = {'
|
|
cat tmp
|
|
echo ' {NULL, 0}'
|
|
echo '};'
|
|
echo
|
|
echo '#define N_ENTITIES' $N
|
|
) > ../src/intl/entity.inc
|
|
rm -f tmp
|
|
echo Done.
|
|
echo
|