forked from AuroraMiddleware/gtk
6 lines
131 B
Bash
Executable File
6 lines
131 B
Bash
Executable File
#!/bin/sh
|
|
|
|
sed -f makekeysyms.sed $1 > .makekeysms.tmp
|
|
awk '{printf "#define %s %s\n", $1, $2}' .makekeysms.tmp
|
|
rm .makekeysms.tmp
|