aboutsummaryrefslogtreecommitdiffstats
path: root/name.sh
blob: 744e9b8eb12349be2d82bef1158d850a38392266 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

TYPE="$1"
INPUT="/usr/include/linux/input.h"

awk "
	/EV_VERSION/	{ next };
	/_MAX/		{ next };
	/#define $1_/	{ printf(\"\t[ %-16s ] = \\\"%s\\\",\n\", \$2, \$2); }
" < $INPUT