MCPcopy Create free account
hub / github.com/GothenburgBitFactory/taskwarrior / CmdUUIDs

Method CmdUUIDs

src/commands/CmdIDs.cpp:191–204  ·  view source on GitHub ↗

///////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

189
190////////////////////////////////////////////////////////////////////////////////
191CmdUUIDs::CmdUUIDs() {
192 _keyword = "uuids";
193 _usage = "task <filter> uuids";
194 _description = "Shows the UUIDs of matching tasks, as a space-separated list";
195 _read_only = true;
196 _displays_id = false;
197 _needs_gc = true;
198 _needs_recur_update = true;
199 _uses_context = false;
200 _accepts_filter = true;
201 _accepts_modifications = false;
202 _accepts_miscellaneous = false;
203 _category = Command::Category::metadata;
204}
205
206////////////////////////////////////////////////////////////////////////////////
207int CmdUUIDs::execute(std::string& output) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected