mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
f68e776617
This one-liner seems preferable to the complications of depending on delve, getting the binary name right and parsing the output.
14 lines
286 B
C++
14 lines
286 B
C++
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <xapian.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
if (argc < 2) {
|
|
std::cerr << "usage: ghost-report xapian-dir" << std::endl;
|
|
exit(1);
|
|
}
|
|
|
|
Xapian::Database db(argv[1]);
|
|
std::cout << db.get_termfreq("Tghost") << std::endl;
|
|
}
|