mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
CmdHelp: Corrected help for export, track
This commit is contained in:
parent
b3b6fe7749
commit
b9e21f455c
1 changed files with 5 additions and 3 deletions
|
@ -84,7 +84,7 @@ int CmdHelp (const CLI& cli)
|
|||
<< "\n"
|
||||
<< "Resumes tracking the most recently closed interval. For exqample:\n"
|
||||
<< "\n"
|
||||
<< " $ timew track yesterday 9am - 5pm tag1 tag2\n"
|
||||
<< " $ timew track 9am - 5pm tag1 tag2\n"
|
||||
<< " $ timew continue\n"
|
||||
<< "\n"
|
||||
<< "The 'continue' command creates a new interval, starting now, and using the tags\n"
|
||||
|
@ -112,9 +112,11 @@ int CmdHelp (const CLI& cli)
|
|||
// 12345678901234567890123456789012345678901234567890123456789012345678901234567890
|
||||
else if (words[0] == "export")
|
||||
std::cout << "\n"
|
||||
<< "Syntax: timew export\n"
|
||||
<< "Syntax: timew export [<filter>]\n"
|
||||
<< "\n"
|
||||
<< "Exports all the tracked time in JSON format.\n"
|
||||
<< "Exports all the tracked time in JSON format. Supports filtering. For example:\n"
|
||||
<< "\n"
|
||||
<< " $ timew export from 2016-01-01 for 3wks tag1\n"
|
||||
<< "\n"
|
||||
<< "See also 'import'.\n"
|
||||
<< "\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue