You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
233 B
10 lines
233 B
15 years ago
|
#!/bin/sh
|
||
|
|
||
|
# Builds .kexi files from .sql files from the current directory.
|
||
|
# Only .kexi file that is older than .sql file is recreated.
|
||
|
# ksqlite is needed on the PATH
|
||
|
|
||
|
for f in `ls -1 *.kexi.sql` ; do
|
||
|
./build_kexi_file.sh $f
|
||
|
done
|