README.md: technical docu + references

This commit is contained in:
2021-01-18 12:59:08 +01:00
parent b5afab3c20
commit cc48d35511
3 changed files with 78 additions and 10 deletions

View File

@@ -170,7 +170,7 @@ int main(int argc, char* argv[])
std::string csvsep = cfgopts.count("csvsep") == 1 ? cfgopts.at("csvsep")
: std::string(",");
std::string files = cfgopts.count("filenames") == 1 ? cfgopts.at("filenames")
: std::string("channel_%C_%G.csv");
: std::string("channel_%G_%C.csv");
bool listgroups = cfgopts.count("listgroups") == 1 ? true : false;
bool listchannels = cfgopts.count("listchannels") == 1 ? true : false;
@@ -224,7 +224,7 @@ int main(int argc, char* argv[])
}
// print meta data
jack.print_meta((pd / "meta-data.txt").c_str());
jack.print_meta((pd / "meta-data.log").c_str());
}
else
{