mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
13 lines
267 B
Bash
Executable file
13 lines
267 B
Bash
Executable file
#!/bin/bash
|
|
|
|
YESTERDAY=$(date -d "yesterday" "+%Y%m%d")
|
|
|
|
export TIMEWARRIORDB=/home/lauft/Projects/timew/timewarriordb
|
|
rm -f ${TIMEWARRIORDB}/data/*.data
|
|
:> ${TIMEWARRIORDB}/timewarrior.cfg
|
|
|
|
timew start ${YESTERDAY}T124452Z homework
|
|
timew month
|
|
timew week
|
|
timew day
|
|
|