
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 machineexplain 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 machineexplain 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 machineexplain this command