什么是tT
tT是Linux命令行下使用的一个简单快速的任务记录软件
通过简单的命令,即可添加、编辑、结束、显示任务项
适合在命令行下工作、并对任务管理不作复杂要求的人
关于tT
Copyright (C) 2011 newnuy
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
这是自由软件:您可以自由地更改并重新发布它
在法律范围内没有其它保证
当前版本下载
tT当前最新版本为1.4.4
点此下载(.tar.bz2)
解压和安装
解压并进入安装目录:
$ tar -jxvf tT.tar.bz2 $ cd tT编译安装:
$ make $ sudo make install # you must be root here
使用tT
add a task:
$ t -a study Linux $ t -a "study math and study physics"add a topic:
$ t -t a study topicprint all tasks:
$ t # print tasks of level 1 0 - study Linux 1 - study math and study physics 2 - << a study topic $ t -1 # print tasks(level 1-9) $ t -0 # print the whole $ t -w # print the whole $ t -T 2 # if 2 is a topicfinish tasks:
$ t -f 0 $ t -f 0 1edit a task or a topic:
$ t -e 1 learn music # rewrite the task $ t -e 1 /study/learn/ # replace the first 'study' $ t -e 1 %/study/learn/ # replace the last 'study' $ t -e 1 //study/learn/ # replace all 'study's $ t -e 2 # if 2 is a topicchange the level:
$ t -9 0 1 # change the level of the taskschange the color of output:
$ t -shelp:
$ t --help可以在~/.bashrc中加入以下语句,将任务数显示在命令提示符前:
export PS1="[$(t | wc -l)] $PS1"
附图