adeel / timed

a command-line time tracker
adeel.github.com/timed
MIT License
109 stars 13 forks source link

Semi-clone in (POSIX compatible) shell script #15

Closed greduan closed 9 years ago

greduan commented 9 years ago

Just thought I should let you know I made a semi-clone written in POSIX compatible shell script: https://gitlab.com/Greduan/scripts/raw/master/timer

Thanks for the inspiration. :) Timed is awesomely simple, but I don't like Python, so I made it in shell script.

It's a semi-clone because a feature is missing (parse), its outputs are different from timed's and by default it uses a directory local file (./.timer) instead of a global file ($HOME/.timer).

adeel commented 9 years ago

That's great! Impressive that it can be done in so few lines of code.

greduan commented 9 years ago

Indeed. The shell's simplicity never ceases to amaze me.