在我的点文件里
stdin_in -> file_out [label=<<font color="blue">tee >/dev/null</font>>];tee >/dev/null应该是标签的文本,但是它包含了一个特殊的字符>,所以dot会抱怨它。我该怎么办呢?谢谢。
发布于 2018-11-21 23:51:01
将文本置于引号中;将行更改为
stdin_in -> file_out[ label = "tee > /dev/null" fontcolor = "blue" ];产生预期的结果:

https://stackoverflow.com/questions/53421641
复制相似问题