]>
git.scottworley.com Git - keystroke-timestamps/blob - fill-in.sh
5 # Add zeros to epoch-timestamped streams. For example, with interval=100:
19 # This is helpful for feeding such streams to gnuplot.
26 while read -r t rest
;do
27 while (( t
- prevt
> interval
));do
28 prevt
=$
(( prevt
+ interval
))