voidrice/.scripts/datelog

7 lines
225 B
Text
Raw Normal View History

2018-08-07 17:50:23 +00:00
#!/bin/sh
# I have a cronjob run this every minute to log time spend on the computer in
# `~/.time` for each day. Gives estimate of daily NEEThood.
date=`date '+%y-%m-%d'`
echo $((`cat ~/.time/"$date"`+1)) > ~/.time/"$date"