COMPILATION:
In order to compile Kat, the following libraries have to be present in the system:

- libsqlite3-dev
- libattr1-dev

EXECUTION:
In order to execute Kat, the following libraries must be present in the system:

- libsqlite3-0
- libattr1


ACCESS TO THE CATALOGS USING SQLITE3:
If you want to access the catalogs you created with Kat, you can install and use the SQLite3 client.
For example, in order to open a catalog called temp.kat, execute the following command:

    $ sqlite3 temp.kat

After that you will be able to examine the database by executing SQL commands, like:

    sqlite> .tables                     To obtain the list of all tables in the database

    sqlite> select * from files;        To obtain the list of all records in the files table

SQLite3 is able to execute almost every SQL command, so... have fun :-)
To exit SQLite3 type:

    sqlite> .quit


