summaryrefslogtreecommitdiffstats
path: root/kexi/examples/build_kexi_files.sh
blob: 8f59c9efe17edb98cf90375e481069468032ee35 (plain)
1
2
3
4
5
6
7
8
9
#!/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