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.
koffice/kexi/examples/build_kexi_files.sh

10 lines
233 B

#!/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