Forrest logo
back to context overview

dot

List of commands for dot:

  • dot:tldr:371b6 dot: Render a `svg` image with the specified output filename (lowercase -o).
    $ dot -T ${svg} -o ${path-to-image-svg} ${path-to-input-gv}
    try on your machine
    explain this command
  • dot:tldr:7f280 dot: Render a `png` image with a filename based on the input filename and output format (uppercase -O).
    $ dot -T ${png} -O ${path-to-input-gv}
    try on your machine
    explain this command
  • dot:tldr:882ac dot: Display help.
    $ dot -?
    try on your machine
    explain this command
  • dot:tldr:d1dba dot: Render a `gif` image using `stdin` and `stdout`.
    $ echo "${digraph {this -> that} }" | dot -T ${gif} > ${path-to-image-gif}
    try on your machine
    explain this command
back to context overview