|
Revision 290, 486 bytes
(checked in by athomas, 4 years ago)
|
Initial import.
|
- Property svn:executable set to
|
| Line | |
|---|
| 1 |
# This script implements automatic todo execution on directory change for |
|---|
| 2 |
# tcsh, identical to the scripts.sh bash script. |
|---|
| 3 |
# |
|---|
| 4 |
# Thanks go to Matthew Russell who provided this script. His usage |
|---|
| 5 |
# comments follow: |
|---|
| 6 |
# |
|---|
| 7 |
# This could be inserted into either ~/.tcshrc or |
|---|
| 8 |
# ~/.login. I don't think the "cwdcmd" alias works |
|---|
| 9 |
# on csh, the forerunner to tcsh, though. |
|---|
| 10 |
# |
|---|
| 11 |
|
|---|
| 12 |
# Run todo on change of directory |
|---|
| 13 |
alias cwdcmd devtodo --timeout --summary |
|---|
| 14 |
|
|---|
| 15 |
# Run todo on login |
|---|
| 16 |
devtodo --timeout --summary |
|---|