如何在外部命令的参数中指定布尔值?

如何在外部命令的参数中指定布尔值?

的手册页txt2html说:

       --make_links
           Should we try to build links?  If this is false, then the links dictionaries are not consulted and only structural text-to-HTML conversion is
           done.  (default: true)

我想将其设置为 false。我该怎么做呢?我找不到此信息,并尝试了几种猜测。

答案1

手册txt2html还说

布尔选项可以通过在它们前面加上no[...]

然后该手册引用了 Perl 包Getopt::Long。在它是手册中,您可以阅读以下有关布尔选项的内容:

该选项不带参数,可以通过在其前面加上 noor来否定no-。 [...]

这意味着要反转选项的含义--make-links,请使用--no-make-links--nomake-links

相关内容