track/README.txt

60 lines
1.9 KiB
Plaintext
Raw Normal View History

2024-04-15 15:44:41 +00:00
TRACK(1) General Commands Manual TRACK(1)
2020-10-11 13:55:11 +00:00
NAME
track - a minimalistic data tracker
SYNOPSIS
track [options] <metric> [<value>]
DESRIPTION
2024-04-15 15:44:41 +00:00
Using the command line, track allows you to enter one and only one data point on any metric per day. Its great for tracking your weight or how many
cups of coffee you drank. track logs your data for each given metric to a CSV file. If you track the same metric twice in the same day, the data is
updated. Data need not be numeric.
2020-10-11 13:55:11 +00:00
OPTIONS
2024-04-15 15:44:41 +00:00
Setting the $TRACK_DIR environment variable will change the default location where the data is stored. If it is not set the current directory is
used.
2020-10-11 13:55:11 +00:00
2024-04-15 15:44:41 +00:00
a Show all values of a metric
2020-10-11 13:55:11 +00:00
2024-04-15 15:44:41 +00:00
n <N> Show N values of a metric
2020-10-11 13:55:11 +00:00
2024-04-15 15:44:41 +00:00
x <metric>
2020-10-11 13:55:11 +00:00
Remove metric file
2024-04-15 15:44:41 +00:00
c Output in CSV format
2020-10-11 13:55:11 +00:00
2024-04-15 15:44:41 +00:00
l List all metrics being tracked
2020-10-11 13:55:11 +00:00
2024-04-15 15:44:41 +00:00
h Show the help.
2020-10-11 13:55:11 +00:00
2024-04-15 15:44:41 +00:00
v Display current version information.
2020-10-11 13:55:11 +00:00
2024-04-15 15:44:41 +00:00
d Debug mode.
2020-10-11 13:55:11 +00:00
EXAMPLES
track weight 150
2024-04-15 15:44:41 +00:00
Log 150lbs for todays weight
2020-10-11 13:55:11 +00:00
2024-04-15 15:44:41 +00:00
track n 10 calories
2020-10-11 13:55:11 +00:00
Show last 10 days calorie values
2020-10-11 13:57:39 +00:00
track mood tired and hungry
2024-04-15 15:44:41 +00:00
Log a multiword phrase as the value for your current mood
2020-10-11 13:55:11 +00:00
track mood
Show last value logged for mood
LICENSE
GNU General Public License v3.0 or later at
2024-04-15 15:44:41 +00:00
https://www.gnu.org/licenses/gpl3.0standalone.html
2020-10-11 13:55:11 +00:00
BUGS
2024-04-15 15:44:41 +00:00
Report issues at the git repository at https://github.com/jamestomasino/track
2020-10-11 13:55:11 +00:00
AUTHOR
James Tomasino <james (at) tomasino (dot) org>
2024-04-15 15:44:41 +00:00
v2024.04.15 15 Apr 2024 TRACK(1)