mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
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
|