SQLite Archiver

Check-in [d6387bdf60]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix typos in the documentation.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d6387bdf60ae941898f65b17237bdcda343e7ed4
User & Date: drh 2014-04-07 13:49:14.563
Context
2014-05-15
11:52
Rename the program from "SAR" to "SFA" to avoid a name collision with the System Activity Report (sar) utility from Solaris. check-in: f563beec00 user: drh tags: trunk
2014-04-07
13:49
Fix typos in the documentation. check-in: d6387bdf60 user: drh tags: trunk
01:26
Add the -n option to disable compression. check-in: d5ea353587 user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to README.md.
58
59
60
61
62
63
64
65
66
67
          mode INT,               -- access permissions
          mtime INT,              -- last modification time
          sz INT,                 -- original file size
          data BLOB               -- compressed content
        );
        
Both directories and empty files have sar.sz==0.  Directories can be
distinguished from empty file because directories have sar.data IS NULL.
The sar.data file is compressed if length(sar.blob)<sar.sz and is stored
as plaintext if length(sar.blob)==sar.sz.







|
|

58
59
60
61
62
63
64
65
66
67
          mode INT,               -- access permissions
          mtime INT,              -- last modification time
          sz INT,                 -- original file size
          data BLOB               -- compressed content
        );
        
Both directories and empty files have sar.sz==0.  Directories can be
distinguished from empty files because directories have sar.data IS NULL.
The file is compressed if length(sar.blob)<sar.sz and is stored
as plaintext if length(sar.blob)==sar.sz.