当前位置:  开发笔记 > 编程语言 > 正文

最佳命令行时间跟踪应用程序?

如何解决《最佳命令行时间跟踪应用程序?》经验,为你挑选了5个好方法。

我正在寻找在终端中运行的东西,并允许我跟踪时间.我希望它是开源的,但这不是必需的.

大部分时间跟踪我发现的应用程序都是基于web或gui的,并且需要更长时间才能输入数据然后我会喜欢.



1> samg..:

TimeTrap.它简单轻巧,使用起来也很直观.

$ t switch World Domination Plan
$ t in --at "5 minutes ago" Research Volcano Islands
$ t out
$ t display
Timesheet World Domination Plan:
Day            Start      End        Duration   Notes
Mar 14, 2009   19:53:30 - 20:06:15   0:12:45    Research Volcano Islands
Total                                0:12:45

它是用ruby编写的,可以作为gemcutter或github上的gem使用:http://github.com/samg/timetrap

用python编写的类似工具叫做TimeBook,可以在bitbucket上使用.



2> Charlie Mart..:

一个真正基本的

$ echo `date`": what I'm doing now" >> timelog.txt

如果你想稍后处理它,那么如果你做那个date +%s或者更容易date +%F%T.

您可以将其包装为shell脚本:

#!/usr/bin/bash -
echo `date +%s` $* >> ~/timelog.txt

你真正想做的一些提示可能会有所帮助.


omg我真的会这么乱,但是你打败了我!

3> mac..:

我最近发现了TaskWarrior,它纯粹是CLI,但功能非常丰富.

编辑2015年6月:自从我多年前写这个答案以来,taskwarrior已经在一个具有许多功能和集成的强大项目中开发出来.我最喜欢的是:

https://inthe.am/about(web界面)

http://mirakel.azapps.de/index.html(android app)

这里有更多taskwarrior工具.


这不是跟踪时间,而是跟踪任务,是吗?

4> martinus..:

你可以使用wtime:

wtime [ -t task ] [  ]

-t  task
    Specify the name of the task. It has to be  a  valid  file-
    name.  Only the first 32 characters are taken into account.
    The default value is "default".

action is one of the following:

-h  Display help.

-a  Start counting.

-s  Stop counting.

-c  Display current elapsed time in seconds.

-r  [ start [ end ]]
    Display time spent on the task during the  specified
    period.  The  parametres start and end represent the
    begginning and end of the reporting  period  respec-
    tively.  The  format  of start and end is '%d-%m-%Y'
    (see strptime (1)).  The default values are the cur-
    rent  time for end and the begginning of the current
    month for the start parameter.



5> antonj..:

Emacs 组织模式!

(视频)Emacs Org-mode - 用于记笔记和项目规划的系统

Emacs和Org-mode实现GTD

时间计时

推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有