mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-06-26 10:54:28 +02:00
36 lines
618 B
Text
36 lines
618 B
Text
= timew-export(1)
|
|
|
|
== NAME
|
|
timew-export - export tracked time in JSON
|
|
|
|
== SYNOPSIS
|
|
[verse]
|
|
*timew export* [ _<id>_**...** | ([_<range>_] [_<tag>_**...**]) ]
|
|
|
|
== DESCRIPTION
|
|
Exports all the tracked time in JSON format.
|
|
|
|
Supply either a list of interval IDs (e.g. `@1 @2`), or optional filters (see **timew-ranges**(7) and/or **timew-tags**(1))
|
|
|
|
== EXAMPLES
|
|
|
|
*Export all intervals*::
|
|
[source]
|
|
----
|
|
$ timew export
|
|
...
|
|
----
|
|
|
|
*Export intervals filtered by range and tag*::
|
|
[source]
|
|
----
|
|
$ timew export from 2016-01-01 for 3wks tag1
|
|
...
|
|
----
|
|
|
|
*Export intervals by their ids*::
|
|
[source]
|
|
----
|
|
$ timew export @1 @3 @7
|
|
...
|
|
----
|