Forrest logo
back to context overview

fdp

List of commands for fdp:

  • fdp:tldr:62750 fdp: Display help.
    $ fdp -?
    try on your machine
    explain this command
  • fdp:tldr:8ec73 fdp: Render a `gif` image using `stdin` and `stdout`.
    $ echo "${digraph {this -> that} }" | fdp -T gif > ${path-to-image-gif}
    try on your machine
    explain this command
  • fdp:tldr:ba8ee fdp: Render a `svg` image with the specified output filename (lowercase -o).
    $ fdp -T svg -o ${path-to-image-svg} ${path-to-input-gv}
    try on your machine
    explain this command
  • fdp:tldr:cfd04 fdp: Render a `png` image with a filename based on the input filename and output format (uppercase -O).
    $ fdp -T png -O ${path-to-input-gv}
    try on your machine
    explain this command
  • fdp:tldr:f058b fdp: Render the output in a specific format.
    $ fdp -T ${select} -O ${path-to-input-gv}
    try on your machine
    explain this command
back to context overview