mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
974a5cdffd
Inspired by bug 381.
29 lines
641 B
Bash
Executable File
29 lines
641 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo
|
|
echo Generating entity table.
|
|
|
|
sed -n '/^[^#]/,$p' < entities.txt | while read line; do \
|
|
name=$(echo "$line" | cut -f 1); \
|
|
code=$(echo "$line" | cut -f 3); \
|
|
desc=$(echo "$line" | cut -f 4 | sed 's/# //'); \
|
|
test "$code" = "0x????" && continue
|
|
printf "\t{ %-12s %s }, /* %-46s */\n" \
|
|
"\"$name\"," "$code" "$desc"; \
|
|
done | LC_ALL=C sort > tmp
|
|
N=`cat tmp | wc -l`
|
|
|
|
cat > ../src/intl/entity.inc <<EOF
|
|
/* Automatically generated by gen-ent */
|
|
|
|
static const struct entity { char *s; unicode_val_T c; } entities [$(expr $N + 1)] = {
|
|
$(cat tmp)
|
|
{ NULL, 0 }
|
|
};
|
|
|
|
#define N_ENTITIES $N
|
|
EOF
|
|
rm -f tmp
|
|
echo Done.
|
|
echo
|