Forrest logo
back to context overview

circo

List of commands for circo:

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