~ubuntu-branches/debian/sid/kexi/sid

« back to all changes in this revision

Viewing changes to src/examples/build_kexi_files.sh

  • Committer: Package Import Robot
  • Author(s): Pino Toscano
  • Date: 2017-06-24 20:10:10 UTC
  • Revision ID: package-import@ubuntu.com-20170624201010-5lrzd5r2vwthwifp
Tags: upstream-3.0.1.1
ImportĀ upstreamĀ versionĀ 3.0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Builds .kexi files from .sql files from the current directory.
 
4
# Only .kexi file that is older than .sql file is recreated.
 
5
# sqlite3 is needed on the PATH
 
6
 
 
7
for f in `ls -1 *.kexi.sql` ; do
 
8
        ./build_kexi_file.sh $f
 
9
done