web-dev-qa-db-ja.com

最高のコマンドライン時間追跡アプリケーション?

ターミナルで実行され、時間を追跡できるものを探しています。オープンソースにしたいのですが、必須ではありません。

私が見つけたほとんどの時間追跡アプリはWebベースまたはGUIベースのいずれかであり、データの入力に時間がかかります。

43
Jared

本当の基本的なものは

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

後で処理したい場合は、date +%sまたはdate +%F%Tにすると簡単です。

これをシェルスクリプトとしてラップできます。

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

あなたが本当にやりたいことのいくつかのヒントが役立つかもしれません。

13
Charlie Martin

最近、 TaskWarrior を発見しました。これは、純粋にCLIですが、機能が豊富です。

2015年6月の編集:私がこの回答を何年も前に書いたので、taskwarriorは多くの機能と統合を備えた素晴らしいプロジェクトで開発されました。私のお気に入りの中には:

その他のtaskwarriorツール ここ

13
mac
5
antonj

wtime を使用できます:

wtime [ -t task ] [ <action> ]

-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
martinus

Todo.txt-cliを使用する場合は、Pythonで記述された パンチタイムトラッキング の使用を検討する必要があります。

3
treehead

App :: TimeTracker-簡単に拡張できるコマンドラインベースのタイムトラッカー

~$ cd work/some_project
~/work/some_project$ tracker start
Started working on some_project at 13:06:20
~/work/some_project$ # hack ... hack ... hack
~/work/some_project$ tracker stop
Worked 00:15:42 on some_project

~/work/some_project$ cd ../other_project
~/work/other_project$ tracker start
Started working on other_project at 13:32:54
~/work/other_project$ # hack some more
~/work/other_project$ tracker current
Working 00:35:31 on other_project
Started at 13:32:54

~/work/other_project$ tracker start --tag testing
Worked 00:38:23 on other_project
Started working on other_project (testing) at 14:11:27
~/work/other_project$ # hack, then go for lunch
~/work/other_project$ # ups, forgot to hit stop when I left
~/work/other_project$ tracker stop --at 14:30
Worked 00:18:33 on other_project (testing)

~/work/other_project$ tracker report --this day
work                     01:12:38
   some_project             00:15:42
   other_project            00:56:56
total                    01:12:38

著者サイトの詳細: http://timetracker.plix.at/

1

タイムトラッキングする情報によって異なります。ある会社では、1日の総労働時間を追跡するだけで済みました(税金/社会保険の目的)。最も簡単な解決策は次のとおりです。last。よりきめ細かく、次のようなことができます

echo -e -n `date`\tProjectName\tTask\tComment >> MyTimeTable.txt
...whatever...
echo -e \t`date` >> MyTimeTable.txt

そして、通常の容疑者(grep、awk、...)で処理します。

さらに多くの機能が必要な場合、GUIなしで動作する人は誰も知りません。

1
flolo

最近Worklogを使い始めましたが、とてもシンプルでわかりやすいようです。

http://ajy.co/2010/worklog-a-simple-time-tracking-program/

1
funkym