mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
12 lines
215 B
Raku
Executable File
12 lines
215 B
Raku
Executable File
print "delete object_templates;\n";
|
|
|
|
while (<>)
|
|
{
|
|
chop;
|
|
($id,$template)=split("\t");
|
|
print "insert into object_templates values (".unpack("i",pack("I",oct($id))).",'$template');\n";
|
|
}
|
|
|
|
print "exit;\n";
|
|
|