Forrest logo
back to context overview

ts

List of commands for ts:

  • ts:tldr:1e85e ts: Add [i]ncremental timestamps with microsecond precision, starting from zero.
    $ ${command} | ts -i "${%H:%M:%-S}"
    try on your machine
    explain this command
  • ts:tldr:442f8 ts: Convert existing timestamps in a text file (eg. a log file) into [r]elative format.
    $ cat ${filename} | ts -r
    try on your machine
    explain this command
  • ts:tldr:8e614 ts: Add timestamps with microsecond precision.
    $ ${command} | ts "${%b %d %H:%M:%-S}"
    try on your machine
    explain this command
  • ts:tldr:98372 ts: Add a timestamp to the beginning of each line.
    $ ${command} | ts
    try on your machine
    explain this command
back to context overview